gitscape 1.6.1 → 1.6.2
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.
- data/bin/gitscape +9 -1
- data/lib/gitscape/version.rb +1 -1
- metadata +36 -49
data/bin/gitscape
CHANGED
|
@@ -48,9 +48,17 @@ op = OptionParser.new do |op|
|
|
|
48
48
|
options[:update_env] = bool
|
|
49
49
|
end
|
|
50
50
|
|
|
51
|
-
op.on '-e', '--env-depth=ENV', [:staging, :qa, :live], 'The level of environments to push changes to' do |depth|
|
|
51
|
+
op.on '-e=ENV', '--env-depth=ENV', [:staging, :qa, :live], 'The level of environments to push changes to' do |depth|
|
|
52
52
|
options[:env_depth] = depth
|
|
53
53
|
end
|
|
54
|
+
|
|
55
|
+
op.on '--qa', 'Sets the environment depth for the command to qa. This is equivalent to "--env-depth=qa".' do
|
|
56
|
+
options[:env_depth] = :qa
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
op.on '--live', 'Sets the environment depth for the command to live. This is equivalent to "--env-depth=live".' do
|
|
60
|
+
options[:env_depth] = :live
|
|
61
|
+
end
|
|
54
62
|
end
|
|
55
63
|
|
|
56
64
|
op.parse!(ARGV)
|
data/lib/gitscape/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,47 +1,41 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitscape
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
- 1
|
|
7
|
-
- 6
|
|
8
|
-
- 1
|
|
9
|
-
version: 1.6.1
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.6.2
|
|
5
|
+
prerelease:
|
|
10
6
|
platform: ruby
|
|
11
|
-
authors:
|
|
7
|
+
authors:
|
|
12
8
|
- Jon Botelho
|
|
13
9
|
- Xavier Matos
|
|
14
10
|
autorequire:
|
|
15
11
|
bindir: bin
|
|
16
12
|
cert_chain: []
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
dependencies:
|
|
21
|
-
- !ruby/object:Gem::Dependency
|
|
13
|
+
date: 2013-05-02 00:00:00.000000000 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
22
16
|
name: git
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
requirements:
|
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
|
+
none: false
|
|
19
|
+
requirements:
|
|
26
20
|
- - ~>
|
|
27
|
-
- !ruby/object:Gem::Version
|
|
28
|
-
segments:
|
|
29
|
-
- 1
|
|
30
|
-
- 2
|
|
31
|
-
- 5
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
32
22
|
version: 1.2.5
|
|
33
23
|
type: :runtime
|
|
34
|
-
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
none: false
|
|
27
|
+
requirements:
|
|
28
|
+
- - ~>
|
|
29
|
+
- !ruby/object:Gem::Version
|
|
30
|
+
version: 1.2.5
|
|
35
31
|
description: Various Git utilities for cherry-pick/rebase workflows.
|
|
36
|
-
email:
|
|
32
|
+
email:
|
|
37
33
|
- gitscape@eachscape.com
|
|
38
|
-
executables:
|
|
34
|
+
executables:
|
|
39
35
|
- gitscape
|
|
40
36
|
extensions: []
|
|
41
|
-
|
|
42
37
|
extra_rdoc_files: []
|
|
43
|
-
|
|
44
|
-
files:
|
|
38
|
+
files:
|
|
45
39
|
- .gitignore
|
|
46
40
|
- Gemfile
|
|
47
41
|
- README.md
|
|
@@ -51,35 +45,28 @@ files:
|
|
|
51
45
|
- lib/gitscape.rb
|
|
52
46
|
- lib/gitscape/base.rb
|
|
53
47
|
- lib/gitscape/version.rb
|
|
54
|
-
has_rdoc: true
|
|
55
48
|
homepage: https://github.com/eachscape/gitscape
|
|
56
49
|
licenses: []
|
|
57
|
-
|
|
58
50
|
post_install_message:
|
|
59
51
|
rdoc_options: []
|
|
60
|
-
|
|
61
|
-
require_paths:
|
|
52
|
+
require_paths:
|
|
62
53
|
- lib
|
|
63
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
requirements:
|
|
72
|
-
- -
|
|
73
|
-
- !ruby/object:Gem::Version
|
|
74
|
-
|
|
75
|
-
- 0
|
|
76
|
-
version: "0"
|
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
55
|
+
none: false
|
|
56
|
+
requirements:
|
|
57
|
+
- - ! '>='
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0'
|
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
|
+
none: false
|
|
62
|
+
requirements:
|
|
63
|
+
- - ! '>='
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: '0'
|
|
77
66
|
requirements: []
|
|
78
|
-
|
|
79
67
|
rubyforge_project:
|
|
80
|
-
rubygems_version: 1.
|
|
68
|
+
rubygems_version: 1.8.24
|
|
81
69
|
signing_key:
|
|
82
70
|
specification_version: 3
|
|
83
71
|
summary: Various Git utilities for cherry-pick/rebase workflows.
|
|
84
72
|
test_files: []
|
|
85
|
-
|