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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9e9bfe6dc308fc927af68f6242733ae2024bb0b0
4
- data.tar.gz: d9ec16816df93500be675e00816ca8f12278aa29
3
+ metadata.gz: b18ef799064af14e213e80203278a13a50d882af
4
+ data.tar.gz: 46a10b5d4c9e94b12dd6f13e23adfbbb9f635379
5
5
  SHA512:
6
- metadata.gz: d5f7c87c3c499d56755288df88e9db883defe07df54e290483eca93f5f417ef1e7a8c58db2d24662b856ade729e44187835bb71118f67cbf654b13f8757bb03d
7
- data.tar.gz: 169536f050e9bc9529d34919aa7946dc6c601fa48d9e7348d5dbe4e25603b147d783a6ec02181432ca401ad044f51ae4777516af050313a464b19885fc4f3a5c
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.4.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/dml/capistrano-changelog"
13
+ spec.homepage = "https://github.com/railsware/capistrano-changelog"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
@@ -26,6 +26,6 @@ module CapistranoChangelog
26
26
  end
27
27
 
28
28
  def self.pivotal_tracker
29
- ENV['PIVOTAL_TOKEN'] or raise CapistranoChangelog::GeneralError, "Pivotal Tracker access token missed. Run $ export PIVOTAL_TOKEN='you-access-token'."
29
+ ENV['PIVOTAL_TOKEN']
30
30
  end
31
31
  end
@@ -20,6 +20,8 @@ module CapistranoChangelog
20
20
  end
21
21
 
22
22
  def export(ids)
23
+ return [] unless CapistranoChangelog.pivotal_tracker
24
+
23
25
  response = connection.post do |opts|
24
26
  opts.url 'stories/export'
25
27
  opts.headers['Content-Type'] = 'application/json'
@@ -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.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: 2014-10-02 00:00:00.000000000 Z
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/dml/capistrano-changelog
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.2.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.