capistrano-changelog 0.4.0 → 0.5.0
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.
- checksums.yaml +4 -4
- data/capistrano-changelog.gemspec +2 -2
- data/lib/capistrano-changelog.rb +1 -1
- data/lib/changelog/trackers/pivotal.rb +2 -0
- data/spec/lib/capistrano_changelog_spec.rb +16 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b18ef799064af14e213e80203278a13a50d882af
|
4
|
+
data.tar.gz: 46a10b5d4c9e94b12dd6f13e23adfbbb9f635379
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1724cb38afab8f8cea1774c15a8bb81f17819b954c1993ad1c11b8912a751f677867ff1ebc2d9e434f6f2ca673414507f8233a3c896bd2b0dea4d6455ba705a2
|
7
|
+
data.tar.gz: b0e725d91f08ac6bb49c8dc9e506244e50036296a53f745e9d89ac8db5da8230eb50714303ba66ee8a1984d00d3ef987d788c2b6aedfa414390a4f33ffab73b3
|
@@ -5,12 +5,12 @@ require 'changelog/version'
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "capistrano-changelog"
|
8
|
-
spec.version = "0.
|
8
|
+
spec.version = "0.5.0"
|
9
9
|
spec.authors = ["Dmitry Larkin"]
|
10
10
|
spec.email = ["dmitry.larkin@gmail.com"]
|
11
11
|
spec.description = %q{Uses git commits to recognize tracker stories and generates ChangeLog.}
|
12
12
|
spec.summary = %q{Uses git commits to recognize tracker stories and generates ChangeLog.}
|
13
|
-
spec.homepage = "https://github.com/
|
13
|
+
spec.homepage = "https://github.com/railsware/capistrano-changelog"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/capistrano-changelog.rb
CHANGED
@@ -15,4 +15,20 @@ describe CapistranoChangelog do
|
|
15
15
|
it { should include described_class.root }
|
16
16
|
end
|
17
17
|
|
18
|
+
describe '.pivotal_tracker' do
|
19
|
+
subject { described_class.pivotal_tracker }
|
20
|
+
|
21
|
+
before { ENV['PIVOTAL_TOKEN'] = nil }
|
22
|
+
|
23
|
+
it { should be_nil }
|
24
|
+
|
25
|
+
context "env variable is defined" do
|
26
|
+
let(:token) { 'test123456' }
|
27
|
+
|
28
|
+
before { ENV['PIVOTAL_TOKEN'] = token }
|
29
|
+
|
30
|
+
it { should == token }
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
18
34
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-changelog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dmitry Larkin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -127,7 +127,7 @@ files:
|
|
127
127
|
- spec/lib/capistrano_changelog_spec.rb
|
128
128
|
- spec/spec_helper.rb
|
129
129
|
- templates/changelog.erb
|
130
|
-
homepage: https://github.com/
|
130
|
+
homepage: https://github.com/railsware/capistrano-changelog
|
131
131
|
licenses:
|
132
132
|
- MIT
|
133
133
|
metadata: {}
|
@@ -147,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
147
147
|
version: '0'
|
148
148
|
requirements: []
|
149
149
|
rubyforge_project:
|
150
|
-
rubygems_version: 2.
|
150
|
+
rubygems_version: 2.4.5
|
151
151
|
signing_key:
|
152
152
|
specification_version: 4
|
153
153
|
summary: Uses git commits to recognize tracker stories and generates ChangeLog.
|