BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
35597f61
Commit
35597f61
authored
Sep 25, 2013
by
Johannes Becker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple PivotalTracker Source Commits Service
parent
daf2cf62
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
1 deletion
+59
-1
pivotaltracker_service.rb
app/models/pivotaltracker_service.rb
+57
-0
project.rb
app/models/project.rb
+2
-1
No files found.
app/models/pivotaltracker_service.rb
0 → 100644
View file @
35597f61
# == Schema Information
#
# Table name: services
#
# id :integer not null, primary key
# type :string(255)
# title :string(255)
# token :string(255)
# project_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
# active :boolean default(FALSE), not null
#
class
PivotaltrackerService
<
Service
include
HTTParty
attr_accessible
:subdomain
,
:room
validates
:token
,
presence:
true
,
if: :activated?
def
title
'PivotalTracker'
end
def
description
'Project Management Software (Source Commits Endpoint)'
end
def
to_param
'pivotaltracker'
end
def
fields
[
{
type:
'text'
,
name:
'token'
,
placeholder:
''
}
]
end
def
execute
(
push
)
url
=
'https://www.pivotaltracker.com/services/v5/source_commits'
push
[
:commits
].
each
do
|
commit
|
message
=
{
'source_commit'
=>
{
'commit_id'
=>
commit
[
:id
],
'author'
=>
commit
[
:author
][
:name
],
'url'
=>
commit
[
:url
],
'message'
=>
commit
[
:message
]}
}
status
=
PivotaltrackerService
.
post
(
url
,
body:
message
.
to_json
,
headers:
{
'Content-Type'
=>
'application/json'
,
'X-TrackerToken'
=>
token
}
)
end
end
end
app/models/project.rb
View file @
35597f61
...
...
@@ -46,6 +46,7 @@ class Project < ActiveRecord::Base
has_one
:last_event
,
class_name:
'Event'
,
order:
'events.created_at DESC'
,
foreign_key:
'project_id'
has_one
:gitlab_ci_service
,
dependent: :destroy
has_one
:campfire_service
,
dependent: :destroy
has_one
:pivotaltracker_service
,
dependent: :destroy
has_one
:hipchat_service
,
dependent: :destroy
has_one
:forked_project_link
,
dependent: :destroy
,
foreign_key:
"forked_to_project_id"
has_one
:forked_from_project
,
through: :forked_project_link
...
...
@@ -220,7 +221,7 @@ class Project < ActiveRecord::Base
end
def
available_services_names
%w(gitlab_ci campfire hipchat)
%w(gitlab_ci campfire hipchat
pivotaltracker
)
end
def
gitlab_ci?
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment