git_reflow 0.9.1 → 0.9.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +23 -1
- data/Gemfile.lock +27 -27
- data/exe/git-reflow +5 -0
- data/git_reflow.gemspec +2 -2
- data/lib/git_reflow/version.rb +1 -1
- metadata +7 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d1fb3ffd57a3b59e0bfb010c5e6b73071b3c638589fd43c76bd562610fa704f7
|
|
4
|
+
data.tar.gz: 70bbde7b4d9210bb8a569004fe41418cbad69dabdcccd77ebb53bbff9278ad0d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bdc335ec23d18619c99a2f018bed46facf8f33ec3fc9ed172220317123ebc86604f9b3a3323dcecab5b078c90177f4cb4bc39497c76b9bcdf4ed51ad824590ed
|
|
7
|
+
data.tar.gz: 2c0beb0a11cbaece34fc1fa4fdeb3e0eccf924e4c09a6fe5af7dcae093d9428583d8b0ea0f15f677a87ad93c7f61d4526598d2c721ea123ab7fcde73debf3b5b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,26 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [Unreleased](https://github.com/reenhanced/gitreflow/tree/HEAD)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.1...v0.9.2)
|
|
6
|
+
|
|
7
|
+
**Closed issues:**
|
|
8
|
+
|
|
9
|
+
- Rebase when refreshing? [\#234](https://github.com/reenhanced/gitreflow/issues/234)
|
|
10
|
+
|
|
11
|
+
**Merged pull requests:**
|
|
4
12
|
|
|
13
|
+
- Update dependencies and trap INT signal [\#235](https://github.com/reenhanced/gitreflow/pull/235) ([codenamev](https://github.com/codenamev))
|
|
14
|
+
- Allow installing gems from within Workflow files with `use_gem` and `use_gemfile` [\#233](https://github.com/reenhanced/gitreflow/pull/233) ([codenamev](https://github.com/codenamev))
|
|
15
|
+
|
|
16
|
+
## [v0.9.1](https://github.com/reenhanced/gitreflow/tree/v0.9.1) (2019-04-17)
|
|
17
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.0...v0.9.1)
|
|
18
|
+
|
|
19
|
+
**Closed issues:**
|
|
20
|
+
|
|
21
|
+
- Purpose of core `stage` command? [\#232](https://github.com/reenhanced/gitreflow/issues/232)
|
|
22
|
+
|
|
23
|
+
## [v0.9.0](https://github.com/reenhanced/gitreflow/tree/v0.9.0) (2018-11-09)
|
|
5
24
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.10...v0.9.0)
|
|
6
25
|
|
|
7
26
|
**Implemented enhancements:**
|
|
@@ -15,6 +34,9 @@
|
|
|
15
34
|
|
|
16
35
|
**Closed issues:**
|
|
17
36
|
|
|
37
|
+
- ear [\#225](https://github.com/reenhanced/gitreflow/issues/225)
|
|
38
|
+
- Nokogiri not getting installed:- [\#220](https://github.com/reenhanced/gitreflow/issues/220)
|
|
39
|
+
- git reflow status returns with 401 - Bad credentials [\#219](https://github.com/reenhanced/gitreflow/issues/219)
|
|
18
40
|
- No help from git reflow --help [\#118](https://github.com/reenhanced/gitreflow/issues/118)
|
|
19
41
|
- f has already been specified as a switch in the command deliver \(ArgumentError\) [\#59](https://github.com/reenhanced/gitreflow/issues/59)
|
|
20
42
|
- Command to edit default commit format [\#51](https://github.com/reenhanced/gitreflow/issues/51)
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
git_reflow (0.9.
|
|
4
|
+
git_reflow (0.9.2)
|
|
5
5
|
bundler (>= 1.10.0)
|
|
6
6
|
colorize (>= 0.7.0)
|
|
7
7
|
github_api (= 0.18.2)
|
|
@@ -12,8 +12,8 @@ PATH
|
|
|
12
12
|
GEM
|
|
13
13
|
remote: https://rubygems.org/
|
|
14
14
|
specs:
|
|
15
|
-
addressable (2.
|
|
16
|
-
public_suffix (>= 2.0.2, <
|
|
15
|
+
addressable (2.7.0)
|
|
16
|
+
public_suffix (>= 2.0.2, < 5.0)
|
|
17
17
|
appraisal (2.2.0)
|
|
18
18
|
bundler
|
|
19
19
|
rake
|
|
@@ -37,17 +37,17 @@ GEM
|
|
|
37
37
|
faraday (~> 0.8)
|
|
38
38
|
hashie (~> 3.5, >= 3.5.2)
|
|
39
39
|
oauth2 (~> 1.0)
|
|
40
|
-
hashdiff (0.
|
|
40
|
+
hashdiff (1.0.0)
|
|
41
41
|
hashie (3.6.0)
|
|
42
42
|
highline (2.0.2)
|
|
43
43
|
httpclient (2.8.3)
|
|
44
|
-
jwt (2.1
|
|
44
|
+
jwt (2.2.1)
|
|
45
45
|
method_source (0.9.2)
|
|
46
46
|
mini_portile2 (2.4.0)
|
|
47
47
|
multi_json (1.13.1)
|
|
48
48
|
multi_xml (0.6.0)
|
|
49
|
-
multipart-post (2.
|
|
50
|
-
nokogiri (1.10.
|
|
49
|
+
multipart-post (2.1.1)
|
|
50
|
+
nokogiri (1.10.4)
|
|
51
51
|
mini_portile2 (~> 2.4.0)
|
|
52
52
|
oauth2 (1.4.1)
|
|
53
53
|
faraday (>= 0.8, < 0.16.0)
|
|
@@ -61,10 +61,10 @@ GEM
|
|
|
61
61
|
pry-byebug (3.7.0)
|
|
62
62
|
byebug (~> 11.0)
|
|
63
63
|
pry (~> 0.10)
|
|
64
|
-
public_suffix (
|
|
64
|
+
public_suffix (4.0.1)
|
|
65
65
|
rack (2.0.7)
|
|
66
|
-
rake (12.3.
|
|
67
|
-
rdoc (6.
|
|
66
|
+
rake (12.3.3)
|
|
67
|
+
rdoc (6.2.0)
|
|
68
68
|
reenhanced_bitbucket_api (0.3.2)
|
|
69
69
|
faraday (~> 0.9.0)
|
|
70
70
|
faraday_middleware (~> 0.9.0)
|
|
@@ -72,28 +72,28 @@ GEM
|
|
|
72
72
|
multi_json (>= 1.7.5, < 2.0)
|
|
73
73
|
nokogiri (>= 1.5.2)
|
|
74
74
|
simple_oauth (>= 0.3.0)
|
|
75
|
-
rspec (3.
|
|
76
|
-
rspec-core (~> 3.
|
|
77
|
-
rspec-expectations (~> 3.
|
|
78
|
-
rspec-mocks (~> 3.
|
|
79
|
-
rspec-core (3.
|
|
80
|
-
rspec-support (~> 3.
|
|
81
|
-
rspec-expectations (3.
|
|
75
|
+
rspec (3.8.0)
|
|
76
|
+
rspec-core (~> 3.8.0)
|
|
77
|
+
rspec-expectations (~> 3.8.0)
|
|
78
|
+
rspec-mocks (~> 3.8.0)
|
|
79
|
+
rspec-core (3.8.2)
|
|
80
|
+
rspec-support (~> 3.8.0)
|
|
81
|
+
rspec-expectations (3.8.4)
|
|
82
82
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
83
|
-
rspec-support (~> 3.
|
|
84
|
-
rspec-mocks (3.
|
|
83
|
+
rspec-support (~> 3.8.0)
|
|
84
|
+
rspec-mocks (3.8.1)
|
|
85
85
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
86
|
-
rspec-support (~> 3.
|
|
87
|
-
rspec-support (3.
|
|
86
|
+
rspec-support (~> 3.8.0)
|
|
87
|
+
rspec-support (3.8.2)
|
|
88
88
|
safe_yaml (1.0.5)
|
|
89
89
|
simple_oauth (0.3.1)
|
|
90
90
|
thor (0.20.3)
|
|
91
91
|
thread_safe (0.3.6)
|
|
92
|
-
webmock (3.
|
|
92
|
+
webmock (3.7.1)
|
|
93
93
|
addressable (>= 2.3.6)
|
|
94
94
|
crack (>= 0.3.2)
|
|
95
|
-
hashdiff
|
|
96
|
-
wwtd (1.
|
|
95
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
|
96
|
+
wwtd (1.4.0)
|
|
97
97
|
|
|
98
98
|
PLATFORMS
|
|
99
99
|
ruby
|
|
@@ -105,9 +105,9 @@ DEPENDENCIES
|
|
|
105
105
|
pry-byebug
|
|
106
106
|
rake (~> 12.3)
|
|
107
107
|
rdoc
|
|
108
|
-
rspec (~> 3.
|
|
108
|
+
rspec (~> 3.8)
|
|
109
109
|
webmock
|
|
110
|
-
wwtd (= 1.
|
|
110
|
+
wwtd (= 1.4)
|
|
111
111
|
|
|
112
112
|
BUNDLED WITH
|
|
113
|
-
|
|
113
|
+
2.0.2
|
data/exe/git-reflow
CHANGED
|
@@ -9,6 +9,11 @@ if reflow_command.nil? || GitReflow.workflow.commands[reflow_command.to_sym].nil
|
|
|
9
9
|
elsif ARGV.include? "--help"
|
|
10
10
|
GitReflow.documentation_for_command(reflow_command)
|
|
11
11
|
else
|
|
12
|
+
trap 'INT' do
|
|
13
|
+
GitReflow.say "Aborted.", :error
|
|
14
|
+
exit
|
|
15
|
+
end
|
|
16
|
+
|
|
12
17
|
command_options = GitReflow.parse_command_options!(reflow_command)
|
|
13
18
|
GitReflow.logger.debug "Running command `#{reflow_command}` with options: #{command_options.inspect}"
|
|
14
19
|
GitReflow.public_send(reflow_command.to_sym, command_options)
|
data/git_reflow.gemspec
CHANGED
|
@@ -23,9 +23,9 @@ Gem::Specification.new do |s|
|
|
|
23
23
|
s.add_development_dependency('pry-byebug')
|
|
24
24
|
s.add_development_dependency('rake', "~> 12.3")
|
|
25
25
|
s.add_development_dependency('rdoc')
|
|
26
|
-
s.add_development_dependency('rspec', "~> 3.
|
|
26
|
+
s.add_development_dependency('rspec', "~> 3.8")
|
|
27
27
|
s.add_development_dependency('webmock')
|
|
28
|
-
s.add_development_dependency('wwtd', '1.
|
|
28
|
+
s.add_development_dependency('wwtd', '1.4')
|
|
29
29
|
|
|
30
30
|
s.add_dependency('bundler', '>= 1.10.0')
|
|
31
31
|
s.add_dependency('colorize', '>= 0.7.0')
|
data/lib/git_reflow/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git_reflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Valentino Stoll
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2019-
|
|
13
|
+
date: 2019-09-10 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: appraisal
|
|
@@ -88,14 +88,14 @@ dependencies:
|
|
|
88
88
|
requirements:
|
|
89
89
|
- - "~>"
|
|
90
90
|
- !ruby/object:Gem::Version
|
|
91
|
-
version: 3.
|
|
91
|
+
version: '3.8'
|
|
92
92
|
type: :development
|
|
93
93
|
prerelease: false
|
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
|
95
95
|
requirements:
|
|
96
96
|
- - "~>"
|
|
97
97
|
- !ruby/object:Gem::Version
|
|
98
|
-
version: 3.
|
|
98
|
+
version: '3.8'
|
|
99
99
|
- !ruby/object:Gem::Dependency
|
|
100
100
|
name: webmock
|
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -116,14 +116,14 @@ dependencies:
|
|
|
116
116
|
requirements:
|
|
117
117
|
- - '='
|
|
118
118
|
- !ruby/object:Gem::Version
|
|
119
|
-
version: 1.
|
|
119
|
+
version: '1.4'
|
|
120
120
|
type: :development
|
|
121
121
|
prerelease: false
|
|
122
122
|
version_requirements: !ruby/object:Gem::Requirement
|
|
123
123
|
requirements:
|
|
124
124
|
- - '='
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
|
-
version: 1.
|
|
126
|
+
version: '1.4'
|
|
127
127
|
- !ruby/object:Gem::Dependency
|
|
128
128
|
name: bundler
|
|
129
129
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -319,8 +319,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
319
319
|
- !ruby/object:Gem::Version
|
|
320
320
|
version: '0'
|
|
321
321
|
requirements: []
|
|
322
|
-
|
|
323
|
-
rubygems_version: 2.7.6
|
|
322
|
+
rubygems_version: 3.0.6
|
|
324
323
|
signing_key:
|
|
325
324
|
specification_version: 4
|
|
326
325
|
summary: A better git process
|