capistrano-gitflow 1.5.7 → 1.6.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/Gemfile +4 -0
- data/lib/capistrano/gitflow/helpers/helper.rb +1 -1
- data/lib/capistrano/gitflow/version.rb +3 -2
- 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: 03b6e94f2cecc6a63f1953814d9a1c7e4d72dc9a
|
|
4
|
+
data.tar.gz: 0736d69c3df06e974e9d7871b40c059152f71be5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f556e804660b46d2ee505c90b60730feb953462e87cf7ac282f6b3275a6822d9ce0c0c6426d90f703615ee3faaa559c45abe93ff3e75362a158f82646ab0361
|
|
7
|
+
data.tar.gz: '07790878b88b18a2e5636ec50b6f96209851845d4f9eec210d29207c49a6dab6c31f1ef42fe2dc8f3c03667042f143100e303946cb8ca6bbcfe3b076c70c17cc'
|
data/Gemfile
ADDED
|
@@ -54,7 +54,7 @@ module CapistranoGitFlow
|
|
|
54
54
|
end
|
|
55
55
|
|
|
56
56
|
def gitflow_next_staging_tag
|
|
57
|
-
hwhen =
|
|
57
|
+
hwhen = Time.now.utc.to_date.to_s
|
|
58
58
|
who = `whoami`.chomp.to_url
|
|
59
59
|
what = ENV['TAG_NAME'] ? ENV['TAG_NAME'] : gitflow_ask_confirm("What does this release introduce? (this will be normalized and used in the tag for this release) ")
|
|
60
60
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-gitflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joshua Nichols
|
|
@@ -61,6 +61,7 @@ extra_rdoc_files:
|
|
|
61
61
|
files:
|
|
62
62
|
- ".document"
|
|
63
63
|
- ".gitignore"
|
|
64
|
+
- Gemfile
|
|
64
65
|
- README.rdoc
|
|
65
66
|
- Rakefile
|
|
66
67
|
- capistrano-gitflow.gemspec
|
|
@@ -93,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
93
94
|
version: '0'
|
|
94
95
|
requirements: []
|
|
95
96
|
rubyforge_project:
|
|
96
|
-
rubygems_version: 2.
|
|
97
|
+
rubygems_version: 2.4.8
|
|
97
98
|
signing_key:
|
|
98
99
|
specification_version: 3
|
|
99
100
|
summary: Capistrano recipe for a deployment workflow based on git tags
|
|
@@ -101,4 +102,3 @@ test_files:
|
|
|
101
102
|
- spec/gitflow_spec.rb
|
|
102
103
|
- spec/spec.opts
|
|
103
104
|
- spec/spec_helper.rb
|
|
104
|
-
has_rdoc:
|