Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
fa858882
Commit
fa858882
authored
Sep 25, 2013
by
Johannes Becker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Syntax cleanup
parent
64e012a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
12 deletions
+16
-12
app/models/pivotaltracker_service.rb
app/models/pivotaltracker_service.rb
+16
-12
No files found.
app/models/pivotaltracker_service.rb
View file @
fa858882
...
...
@@ -38,18 +38,22 @@ class PivotaltrackerService < Service
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
}
)
message
=
{
'source_commit'
=>
{
'commit_id'
=>
commit
[
:id
],
'author'
=>
commit
[
:author
][
:name
],
'url'
=>
commit
[
:url
],
'message'
=>
commit
[
:message
]
}
}
PivotaltrackerService
.
post
(
url
,
body:
message
.
to_json
,
headers:
{
'Content-Type'
=>
'application/json'
,
'X-TrackerToken'
=>
token
}
)
end
end
end
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