flash_flow 1.4.4 → 1.4.5
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/Gemfile.lock +1 -1
- data/bin/flash_flow +1 -1
- data/lib/flash_flow/merge.rb +1 -1
- data/lib/flash_flow/merge/acceptance.rb +1 -1
- data/lib/flash_flow/merge/{master.rb → release.rb} +1 -1
- data/lib/flash_flow/options.rb +1 -0
- data/lib/flash_flow/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4aff3163ea68205769ff9157ffcc3186797b571c
|
4
|
+
data.tar.gz: d917594c16e2f836b6572922a227df7f696bbd39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39d51941b834bc218524412c37e7fd02309a3e947e39aad06ff5b45ff0815fa65c79bb6939accff3c98072c0c119e3e82753f195c1f9901101ae27b5694c4238
|
7
|
+
data.tar.gz: 75ba31076eaa53acb0f84a81088f7dcd4e21e892e03bd9903be25ba38df81f4c87c3fd747f49bead11ce399bf6857b6643d16a14fe0f60c412b56df2917d585f
|
data/Gemfile.lock
CHANGED
data/bin/flash_flow
CHANGED
@@ -29,7 +29,7 @@ case
|
|
29
29
|
when options[:merge_status_html]
|
30
30
|
FlashFlow::Merge::Status.new(FlashFlow::Config.configuration.issue_tracker, FlashFlow::Config.configuration.branches, FlashFlow::Config.configuration.branch_info_file, FlashFlow::Config.configuration.git, logger: FlashFlow::Config.configuration.logger).status_html
|
31
31
|
when options[:release_branches]
|
32
|
-
FlashFlow::Merge::
|
32
|
+
FlashFlow::Merge::Release.new(options).run
|
33
33
|
else
|
34
34
|
FlashFlow::Merge::Acceptance.new(options).run
|
35
35
|
FlashFlow::IssueTracker::Base.new(FlashFlow::Config.configuration.issue_tracker).stories_pushed
|
data/lib/flash_flow/merge.rb
CHANGED
data/lib/flash_flow/options.rb
CHANGED
@@ -24,6 +24,7 @@ module FlashFlow
|
|
24
24
|
opts.on('--merge-status', 'Show status of all branches and their stories and exit') { |v| options[:merge_status] = true }
|
25
25
|
opts.on('--merge-status-html', 'Show status of all branches and their stories in html format and exit') { |v| options[:merge_status_html] = true }
|
26
26
|
opts.on('--make-release branch1,branch2', 'Comma-delimited list of branches to merge to the release branch. Run "--merge-release ready" to merge all ready to ship branches') { |v| options[:release_branches] = v.split(',') }
|
27
|
+
opts.on('--merge-release', 'Merge the release branch into the master branch and push') { |v| options[:merge_release] = v.split(',') }
|
27
28
|
|
28
29
|
opts.on_tail("-h", "--help", "Show this message") do
|
29
30
|
puts opts
|
data/lib/flash_flow/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flash_flow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Flashfunders
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: octokit
|
@@ -188,8 +188,8 @@ files:
|
|
188
188
|
- lib/flash_flow/merge.rb
|
189
189
|
- lib/flash_flow/merge/acceptance.rb
|
190
190
|
- lib/flash_flow/merge/base.rb
|
191
|
-
- lib/flash_flow/merge/master.rb
|
192
191
|
- lib/flash_flow/merge/merge_status.html.erb
|
192
|
+
- lib/flash_flow/merge/release.rb
|
193
193
|
- lib/flash_flow/merge/release_graph.rb
|
194
194
|
- lib/flash_flow/merge/status.rb
|
195
195
|
- lib/flash_flow/merge_order.rb
|