rgitflow 0.1.0 → 0.2.0.pre.alpha.pre.20
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,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YjVjOTVkMmJhMTZlZDM1Y2VlY2I3MzNmODNkODA0MThiMzkyNWNlYQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NGNjNDdhN2QyMzlmNTAyZTFjNmJjNTdkMjBlNjQzYWZmZDc5NzMzMw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YjFmOTBmZWE5MmY2YzZlOTM4ZTQzYWY3OTRlOGY3OTMxMGIxMTE0MmUyOWI4
|
|
10
|
+
ODI2NmI1ZTNjZmU0YTFiYTYxZDEzOTFlNDlkOTAzNDE3OTEwYzhkMzVhMTMy
|
|
11
|
+
MmFkZTQ4MTAyYjU3MzA5MjVhMjg5NDY2MzllYjkxZGQzOGM3NTE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MjE1ZmZmZmMxZjMzMjg2ZTFiMjY2ODMyODBmODIzYTNmMmExYWEwZTk3NzM2
|
|
14
|
+
YmViNzVjYWFmM2NiYmQ1MWY1MGE1OTY0ODdhY2JmZGVmZWViMzIxYWVjMjc3
|
|
15
|
+
ODIyOWE2NjQ1N2MyZDQ3MTkyOThiZDU2YTAyYzUyOWE4ZmM2YmY=
|
|
@@ -18,15 +18,7 @@ module RGitFlow
|
|
|
18
18
|
abort
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
-
branch =
|
|
22
|
-
|
|
23
|
-
while branch.blank?
|
|
24
|
-
error 'Cannot create a branch with an empty name!'
|
|
25
|
-
prompt 'Please enter a name for your release branch:'
|
|
26
|
-
branch = STDIN.gets.chomp
|
|
27
|
-
end
|
|
28
|
-
|
|
29
|
-
branch = [RGitFlow::Config.options[:release], branch].join('/')
|
|
21
|
+
branch = [RGitFlow::Config.options[:release], RGitFlow::VERSION.to_s].join('/')
|
|
30
22
|
|
|
31
23
|
if @git.is_local_branch? branch
|
|
32
24
|
error 'Cannot create a branch that already exists locally'
|
data/lib/rgitflow/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rgitflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0.pre.alpha.pre.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Richard Harrah
|
|
@@ -186,9 +186,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
186
186
|
version: '0'
|
|
187
187
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
188
|
requirements:
|
|
189
|
-
- - ! '
|
|
189
|
+
- - ! '>'
|
|
190
190
|
- !ruby/object:Gem::Version
|
|
191
|
-
version:
|
|
191
|
+
version: 1.3.1
|
|
192
192
|
requirements: []
|
|
193
193
|
rubyforge_project:
|
|
194
194
|
rubygems_version: 2.4.5
|