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
- OTdhY2RiYjg0NzkxMzNmNmQ3NzJmNDNmMDY3NzViNzRmYjc5YzFiNQ==
4
+ YjVjOTVkMmJhMTZlZDM1Y2VlY2I3MzNmODNkODA0MThiMzkyNWNlYQ==
5
5
  data.tar.gz: !binary |-
6
- NGVlNTRmMjhiMTZiNTI3NGU4YTdmMGFkOGIwOTM3Y2M0MWRjOTQ3Yw==
6
+ NGNjNDdhN2QyMzlmNTAyZTFjNmJjNTdkMjBlNjQzYWZmZDc5NzMzMw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ODg4NGIyZjRjOWZjOGFhZmRjN2M0NjY3OTgyY2ZiM2MzODdlMGE1OTQ0NmM2
10
- ZDc1MDFmOGU0ZjU0ZTQ3ZDc4OWE5NTk2ZGZiYzJmNGM3MDk2OWU0Yzc2ODZi
11
- YjlmYzI4NjY1MDE1MjQ0ZGYxYWQwMTVkNjEzZjkzN2M4NjAzZmY=
9
+ YjFmOTBmZWE5MmY2YzZlOTM4ZTQzYWY3OTRlOGY3OTMxMGIxMTE0MmUyOWI4
10
+ ODI2NmI1ZTNjZmU0YTFiYTYxZDEzOTFlNDlkOTAzNDE3OTEwYzhkMzVhMTMy
11
+ MmFkZTQ4MTAyYjU3MzA5MjVhMjg5NDY2MzllYjkxZGQzOGM3NTE=
12
12
  data.tar.gz: !binary |-
13
- YTU2NzJhZjBiOGM3YTlmZTQzYmY3ZGY3YjlhMzMwYWM0N2M3YTIyNjc3MzJm
14
- MGMxNjQ4N2FlYTdjNTIxYWE2YjkyNzQ3YjkyMmFhZDNhMjIxZjU4YWFiOTIx
15
- ZDU4MDg4MGRhODRjZWJkMmVhZjVhZDc2NDcyZDdiNzViMDQ4N2U=
13
+ MjE1ZmZmZmMxZjMzMjg2ZTFiMjY2ODMyODBmODIzYTNmMmExYWEwZTk3NzM2
14
+ YmViNzVjYWFmM2NiYmQ1MWY1MGE1OTY0ODdhY2JmZGVmZWViMzIxYWVjMjc3
15
+ ODIyOWE2NjQ1N2MyZDQ3MTkyOThiZDU2YTAyYzUyOWE4ZmM2YmY=
@@ -21,7 +21,7 @@ module RGitFlow
21
21
  end
22
22
 
23
23
  @git.branch(RGitFlow::Config.options[:develop]).checkout
24
- @git.merge branch
24
+ @git.merge branch, "merging #{branch} into #{RGitFlow::Config.options[:develop]}"
25
25
 
26
26
  @git.push
27
27
  if @git.is_remote_branch? branch
@@ -21,7 +21,7 @@ module RGitFlow
21
21
  end
22
22
 
23
23
  @git.branch(RGitFlow::Config.options[:master]).checkout
24
- @git.merge branch
24
+ @git.merge branch, "merging #{branch} into #{RGitFlow::Config.options[:master]}"
25
25
 
26
26
  @git.push
27
27
  if @git.is_remote_branch? branch
@@ -21,7 +21,7 @@ module RGitFlow
21
21
  end
22
22
 
23
23
  @git.branch(RGitFlow::Config.options[:master]).checkout
24
- @git.merge branch
24
+ @git.merge branch, "merging #{branch} into #{RGitFlow::Config.options[:master]}"
25
25
 
26
26
  @git.push
27
27
  if @git.is_remote_branch? branch
@@ -18,15 +18,7 @@ module RGitFlow
18
18
  abort
19
19
  end
20
20
 
21
- branch = ENV['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'
@@ -2,5 +2,5 @@
2
2
  module RGitFlow
3
3
  # Represents this gem's current version.
4
4
  # @return [String] current version
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
6
6
  end
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.1.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: '0'
191
+ version: 1.3.1
192
192
  requirements: []
193
193
  rubyforge_project:
194
194
  rubygems_version: 2.4.5