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 +4 -4
- data/.zenflow +1 -1
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/VERSION.yml +1 -1
- data/lib/zenflow/commands/feature.rb +7 -0
- data/spec/zenflow/commands/hotfix_spec.rb +1 -1
- data/spec/zenflow/commands/release_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 144c042bd4f6c48e0ef592b7eae3e6c5922c770c
|
4
|
+
data.tar.gz: 9d467737a9447df6af448f28ff3ef99551b21626
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c23c4e1f03681e23e8b640fd5e945da835f1d99c9e191ddf893a852143a987f954a4e9b3f8dbd83b9ac568a1b452531fd22536e51f221f41482cc5f72db1ac8c
|
7
|
+
data.tar.gz: f8a55bd01e6f6ad3811f2c7ec2ae3a8aa12e4169b43f11a3e058e6bb3cd4e32894f45d2cffcf65af3d93f81d583e14481fdcb46f88931c1405e4ea68722e885f
|
data/.zenflow
CHANGED
data/CHANGELOG.md
CHANGED
@@ -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
|
data/Gemfile.lock
CHANGED
data/VERSION.yml
CHANGED
@@ -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
|
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
|
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.
|
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-
|
13
|
+
date: 2014-07-11 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: thor
|