jenkins_tracker 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +4 -5
- data/jenkins_tracker.gemspec +1 -1
- data/lib/jenkins_tracker/version.rb +1 -1
- metadata +5 -5
data/README.md
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
# JenkinsTracker
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/bitium/jenkins_tracker)
|
|
4
4
|
[](http://badge.fury.io/rb/jenkins_tracker)
|
|
5
5
|
|
|
6
6
|
`jenkins_tracker` is a command line utility packaged as a [RubyGem](https://rubygems.org/gems/jenkins_tracker) that
|
|
7
7
|
integrates [Jenkins CI](http://jenkins-ci.org/) build information with [Pivotal Tracker](https://www.pivotaltracker.com) stories within a project.
|
|
8
|
-
The underlying library is also used in the native [Jenkins Tracker Plugin](https://github.com/prashantrajan/jenkins-tracker-plugin).
|
|
9
8
|
|
|
10
9
|
This is an example of a successful build integration:
|
|
11
10
|
|
|
12
|
-

|
|
13
12
|
|
|
14
13
|
|
|
15
14
|
## Requirements
|
|
@@ -19,7 +18,7 @@ This is an example of a successful build integration:
|
|
|
19
18
|
* Git as your SCM via the [Jenkins Git Plugin](https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin).
|
|
20
19
|
|
|
21
20
|
* The build changelog file is available at `$JENKINS_HOME/jobs/$JOB_NAME/builds/$BUILD_NUMBER/changelog.xml`.
|
|
22
|
-
The changelog contents look like this [example](https://github.com/
|
|
21
|
+
The changelog contents look like this [example](https://github.com/bitium/jenkins_tracker/blob/master/spec/fixtures/git_changelog.txt).
|
|
23
22
|
|
|
24
23
|
* `Ruby` is available in the environment.
|
|
25
24
|
|
|
@@ -60,7 +59,7 @@ $ bundle exec jenkins_tracker integrate --tracker-token ABC123456 --tracker-proj
|
|
|
60
59
|
# => Successfully integrated Jenkins Job $JOB_NAME with Pivotal Tracker Project #123456
|
|
61
60
|
```
|
|
62
61
|
|
|
63
|
-

|
|
64
63
|
|
|
65
64
|
|
|
66
65
|
## Contributing
|
data/jenkins_tracker.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
|
10
10
|
gem.email = ['prashant.nadarajan@gmail.com']
|
|
11
11
|
gem.description = %q{Integrate Jenkins build information with a Pivotal Tracker project}
|
|
12
12
|
gem.summary = %q{Integrate Jenkins build information as notes in the relevant Pivotal Tracker stories based on its post commit message}
|
|
13
|
-
gem.homepage = 'https://github.com/
|
|
13
|
+
gem.homepage = 'https://github.com/bitium/jenkins_tracker'
|
|
14
14
|
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
|
16
16
|
gem.executables = %w(jenkins_tracker)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jenkins_tracker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-02-
|
|
12
|
+
date: 2013-02-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rest-client
|
|
@@ -110,7 +110,7 @@ files:
|
|
|
110
110
|
- spec/jenkins_tracker/util_spec.rb
|
|
111
111
|
- spec/spec_helper.rb
|
|
112
112
|
- spec/support/fixture_loader.rb
|
|
113
|
-
homepage: https://github.com/
|
|
113
|
+
homepage: https://github.com/bitium/jenkins_tracker
|
|
114
114
|
licenses: []
|
|
115
115
|
post_install_message:
|
|
116
116
|
rdoc_options: []
|
|
@@ -124,7 +124,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
124
124
|
version: '0'
|
|
125
125
|
segments:
|
|
126
126
|
- 0
|
|
127
|
-
hash:
|
|
127
|
+
hash: 3736903093214063864
|
|
128
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
129
129
|
none: false
|
|
130
130
|
requirements:
|
|
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
133
133
|
version: '0'
|
|
134
134
|
segments:
|
|
135
135
|
- 0
|
|
136
|
-
hash:
|
|
136
|
+
hash: 3736903093214063864
|
|
137
137
|
requirements: []
|
|
138
138
|
rubyforge_project:
|
|
139
139
|
rubygems_version: 1.8.24
|