zenflow 0.8.7 → 0.8.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 760e912aa2ad201df500d0a421839c5fa26411bb
4
- data.tar.gz: 4bcaa9ef762b80454c8a1cf27181e008d174516c
3
+ metadata.gz: 144c042bd4f6c48e0ef592b7eae3e6c5922c770c
4
+ data.tar.gz: 9d467737a9447df6af448f28ff3ef99551b21626
5
5
  SHA512:
6
- metadata.gz: 0c438deb0f3d413cf5432b407b0515bde93e52dcf3083d9ce4d3a2c46595cb0773d0f15638187fa2366f25b36d61de3fc37fe6a0fc07a550eb925c347880ff66
7
- data.tar.gz: 94c98d1472729f3485bb956f52e1a81e859b42cad8287108d68b837ad65141c62246e6397a00967771d00cb844464e3e43ad4f8368bc05b7e68364bd7e264465
6
+ metadata.gz: c23c4e1f03681e23e8b640fd5e945da835f1d99c9e191ddf893a852143a987f954a4e9b3f8dbd83b9ac568a1b452531fd22536e51f221f41482cc5f72db1ac8c
7
+ data.tar.gz: f8a55bd01e6f6ad3811f2c7ec2ae3a8aa12e4169b43f11a3e058e6bb3cd4e32894f45d2cffcf65af3d93f81d583e14481fdcb46f88931c1405e4ea68722e885f
data/.zenflow CHANGED
@@ -6,6 +6,6 @@ backup_remote: false
6
6
  confirm_review: true
7
7
  confirm_staging: true
8
8
  remote: origin
9
- release_branch: production
9
+ release_branch: false
10
10
  staging_branch: staging
11
11
  merge_strategy: merge
@@ -0,0 +1,9 @@
1
+ --------------------------------------------------------------------------------
2
+ ^ ADD NEW CHANGES ABOVE ^
3
+ --------------------------------------------------------------------------------
4
+
5
+ CHANGELOG
6
+ =========
7
+
8
+ ---- 0.8.8 / 2014-07-11 / prompt-for-changelog-entry-when-finishing-feature ----
9
+ * fix issue #25, prompt for changelog update when finishing a feature
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- zenflow (0.8.7)
4
+ zenflow (0.8.10)
5
5
  colored (~> 1.2)
6
6
  httparty (~> 0.13.0)
7
7
  terminal-table (~> 1.4.5)
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  major: 0
3
3
  minor: 8
4
- patch: 7
4
+ patch: 10
5
5
  pre:
@@ -6,5 +6,12 @@ module Zenflow
6
6
  branch source: Zenflow::Config[:development_branch]
7
7
  branch deploy: Zenflow::Config[:qa_branch]
8
8
 
9
+ if Zenflow::Config[:release_branch]
10
+ changelog :sans_rotation
11
+ else
12
+ changelog :rotate
13
+ version :patch
14
+ end
15
+
9
16
  end
10
17
  end
@@ -5,7 +5,7 @@ describe Zenflow::Hotfix do
5
5
  subject { Zenflow::Hotfix.new }
6
6
 
7
7
  it { expect(subject.flow).to eq("hotfix") }
8
- it { expect(subject.branch(:source)).to eq("production") }
8
+ it { expect(subject.branch(:source)).to be_false }
9
9
  it { expect(subject.branch(:deploy)).to match_array(["staging", "qa"]) }
10
10
  it { expect(subject.changelog).to eq(:rotate) }
11
11
  it { expect(subject.version).to eq(:patch) }
@@ -6,7 +6,7 @@ describe Zenflow::Release do
6
6
 
7
7
  it { expect(subject.flow).to eq("release") }
8
8
  it { expect(subject.branch(:source)).to eq("master") }
9
- it { expect(subject.branch(:destination)).to eq("production") }
9
+ it { expect(subject.branch(:destination)).to be_false }
10
10
  it { expect(subject.branch(:deploy)).to match_array(["staging", "qa"]) }
11
11
  it { expect(subject.changelog).to eq(:rotate) }
12
12
  it { expect(subject.version).to eq(:minor) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zenflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.7
4
+ version: 0.8.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Kittelson
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-07-09 00:00:00.000000000 Z
13
+ date: 2014-07-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: thor