gitx 2.13.3 → 2.13.4.ci.39.1
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 +13 -5
- data/.travis.yml +6 -4
- data/README.md +4 -1
- data/gitx.gemspec +6 -1
- data/lib/gitx/cli/integrate_command.rb +3 -4
- data/lib/gitx/version.rb +1 -1
- data/spec/gitx/cli/integrate_command_spec.rb +53 -80
- metadata +44 -44
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
N2ZjOGFjYTFiMmQ0YjU2Y2JjYTQ2ZjI3M2VjZGIzYjdlZTg4NmVmMA==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
ZDFhZDNkYmNjOTBiZTBkNDhjZTk4YWFlY2EzZDhkMzgyMjNkZmZjMw==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ZjdlYjgxY2RiODFkODMwZWNmMWM1ZDllZDg3NzM4ZmI4YWU3MGMyM2JjOTg4
|
10
|
+
N2QzMTQ2OGI2MDcwNGYyOTY0MzYwMzk3NDQwY2M2ZDk4NjcwNjJlODFkODA4
|
11
|
+
MTM3ZmRmNWQ4ODA2ZGE1OTIyOGM4ZGVhODJlYTNjZDFlYzI0ZDk=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
MDA2YWVhMWE0Y2UwOWZkNGRmMWE1OTc0NDdiOTk3MzNhYTliMTVhMjZjN2Fh
|
14
|
+
N2ZmMTI5MjkzMGIxMjk5MjI0NjM5MWUyNGNiZWJjZDVjNjEwYjU5MTU0Zjk1
|
15
|
+
OWQ2YzA1MDRjNzVlMzExNDZhZTA2YTE1MzYzOWQzZjM3Nzk1NzA=
|
data/.travis.yml
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
language: ruby
|
2
|
-
rvm:
|
3
|
-
- '2.1.2'
|
4
2
|
before_install:
|
5
|
-
|
6
|
-
|
3
|
+
- git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
|
4
|
+
- git fetch
|
5
|
+
deploy:
|
6
|
+
provider: rubygems
|
7
|
+
api_key:
|
8
|
+
secure: RHedFaKxfm4yxqJzSEOPZr+OrcS5B1uiPwRjpIHau4hzPysDiTHzjIiFO78o1qrl7UeX9c5k0RQZJGp+9OB/H+WgbyfUzX2C2RbUuHRZubTvFaBvf8qe2D5+7fvj0FdzYS6xKZ23N1FW4vN17M6sViJYlCncB3fxzRA/BHxQlkL1LbQOn9zChI9eZ/gQrKrnziL1IvBSAMygBLHEEMq18lFf+mHiXFJDw/2dghbnPFZh5WYWCbfe/dS7trTJZWax+4xZDmXIqNi3cZiGn5dj2HhMUBX9xHRJORVtplxvP/9ZVuxqdY499DdtsEvemZKEmdggk/jYyxkfKFy+SQSkqRkUAcAS/LmsSn0wkJRiKXSqxTyvF063nct4DQCPjd+HGIFVkVG+4Vknwusg78TZ/BoMlOJnGS7TIuZRdcRujBsoAEqnz9imCz9sMk6IJmyc4XYuwQmPaxQtn0iODt0wAtr3chuPV2IC3j5CdXnXoU00iYS+zZXfVJgBcrdiCuuHnhxGzdKixzgXQ8fUnkniN/uWc0T2X9BvGnf3gyqJEZb7uIXOkozrXF6allXBiM6fXC9X0tL06qjdhaY/WKnmFGThcIBayxrS51GIDcKOGoVaSx/juVDpScwtof2jJplLz09w+36Rz7zMB67xo4yaGp/TPI+CbMc+0+my4+3B9lg=
|
data/README.md
CHANGED
@@ -4,7 +4,10 @@
|
|
4
4
|
|
5
5
|
# GitX
|
6
6
|
|
7
|
-
>
|
7
|
+
> Git eXtensions for improved development workflows
|
8
|
+
|
9
|
+
These custom scripts are automatically registered into the git namespace
|
10
|
+
so they are available without learning any new commands!
|
8
11
|
|
9
12
|
### Global Options
|
10
13
|
* `--trace` or `-v` = verbose output for debugging commands
|
data/gitx.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Gitx::VERSION
|
9
9
|
spec.authors = ['Ryan Sonnek']
|
10
10
|
spec.email = ['ryan.sonnek@gmail.com']
|
11
|
-
spec.description = 'Git eXtensions for improved development
|
11
|
+
spec.description = 'Git eXtensions for improved development workflows'
|
12
12
|
spec.summary = 'Utility scripts for Git to increase productivity for common operations'
|
13
13
|
spec.homepage = ''
|
14
14
|
spec.license = 'MIT'
|
@@ -35,4 +35,9 @@ Gem::Specification.new do |spec|
|
|
35
35
|
spec.add_development_dependency 'terminal-notifier'
|
36
36
|
spec.add_development_dependency 'terminal-notifier-guard'
|
37
37
|
spec.add_development_dependency 'rubocop'
|
38
|
+
|
39
|
+
# configure gem version for continuous integration builds
|
40
|
+
if ENV['TRAVIS_JOB_NUMBER']
|
41
|
+
spec.version = "#{spec.version}.ci.#{ENV['TRAVIS_JOB_NUMBER']}"
|
42
|
+
end
|
38
43
|
end
|
@@ -10,7 +10,6 @@ module Gitx
|
|
10
10
|
include Gitx::Github
|
11
11
|
desc 'integrate', 'integrate the current branch into one of the aggregate development branches (default = staging)'
|
12
12
|
method_option :resume, type: :string, aliases: '-r', desc: 'resume merging of feature-branch'
|
13
|
-
method_option :comment, type: :boolean, aliases: '-c', desc: 'add a comment to the pull request for this branch. Creates a new PR if none exists.'
|
14
13
|
def integrate(integration_branch = 'staging')
|
15
14
|
assert_aggregate_branch!(integration_branch)
|
16
15
|
|
@@ -20,13 +19,13 @@ module Gitx
|
|
20
19
|
begin
|
21
20
|
execute_command(UpdateCommand, :update)
|
22
21
|
rescue
|
23
|
-
raise MergeError, 'Merge
|
22
|
+
raise MergeError, 'Merge conflict occurred. Please fix merge conflict and rerun the integrate command'
|
24
23
|
end
|
25
24
|
|
26
25
|
integrate_branch(branch, integration_branch) unless options[:resume]
|
27
26
|
checkout_branch branch
|
28
27
|
|
29
|
-
create_integrate_comment(branch)
|
28
|
+
create_integrate_comment(branch) unless config.reserved_branch?(branch)
|
30
29
|
end
|
31
30
|
|
32
31
|
private
|
@@ -44,7 +43,7 @@ module Gitx
|
|
44
43
|
begin
|
45
44
|
run_cmd "git merge #{branch}"
|
46
45
|
rescue
|
47
|
-
raise MergeError, "Merge
|
46
|
+
raise MergeError, "Merge conflict occurred. Please fix merge conflict and rerun command with --resume #{branch} flag"
|
48
47
|
end
|
49
48
|
run_cmd 'git push origin HEAD'
|
50
49
|
end
|
data/lib/gitx/version.rb
CHANGED
@@ -47,8 +47,9 @@ describe Gitx::Cli::IntegrateCommand do
|
|
47
47
|
it 'defaults to staging branch' do
|
48
48
|
should meet_expectations
|
49
49
|
end
|
50
|
-
it '
|
51
|
-
expect(WebMock).
|
50
|
+
it 'posts comment to pull request' do
|
51
|
+
expect(WebMock).to have_requested(:post, 'https://api.github.com/repos/wireframe/gitx/issues/10/comments')
|
52
|
+
.with(body: { body: '[gitx] integrated into staging :twisted_rightwards_arrows:' })
|
52
53
|
end
|
53
54
|
end
|
54
55
|
context 'when current_branch == master' do
|
@@ -72,6 +73,54 @@ describe Gitx::Cli::IntegrateCommand do
|
|
72
73
|
it 'does not create pull request' do
|
73
74
|
expect(WebMock).to_not have_requested(:post, 'https://api.github.com/repos/wireframe/gitx/pulls')
|
74
75
|
end
|
76
|
+
it 'does not post comment on pull request' do
|
77
|
+
expect(WebMock).to_not have_requested(:post, 'https://api.github.com/repos/wireframe/gitx/issues/10/comments')
|
78
|
+
end
|
79
|
+
end
|
80
|
+
context 'when a pull request doesnt exist for the feature-branch' do
|
81
|
+
let(:authorization_token) { '123123' }
|
82
|
+
let(:changelog) { '* made some fixes' }
|
83
|
+
let(:new_pull_request) do
|
84
|
+
{
|
85
|
+
html_url: 'https://path/to/html/pull/request',
|
86
|
+
issue_url: 'https://api/path/to/issue/url',
|
87
|
+
number: 10,
|
88
|
+
head: {
|
89
|
+
ref: 'branch_name'
|
90
|
+
}
|
91
|
+
}
|
92
|
+
end
|
93
|
+
before do
|
94
|
+
allow(cli).to receive(:ask_editor).and_return('description')
|
95
|
+
allow(cli).to receive(:authorization_token).and_return(authorization_token)
|
96
|
+
expect(cli).to receive(:execute_command).with(Gitx::Cli::UpdateCommand, :update).twice
|
97
|
+
|
98
|
+
expect(cli).to receive(:run_cmd).with('git fetch origin').ordered
|
99
|
+
expect(cli).to receive(:run_cmd).with('git branch -D staging', allow_failure: true).ordered
|
100
|
+
expect(cli).to receive(:run_cmd).with('git checkout staging').ordered
|
101
|
+
expect(cli).to receive(:run_cmd).with('git merge feature-branch').ordered
|
102
|
+
expect(cli).to receive(:run_cmd).with('git push origin HEAD').ordered
|
103
|
+
expect(cli).to receive(:run_cmd).with('git checkout feature-branch').ordered
|
104
|
+
expect(cli).to receive(:run_cmd).with('git checkout feature-branch').ordered
|
105
|
+
expect(cli).to receive(:run_cmd).with("git log master...feature-branch --reverse --no-merges --pretty=format:'* %s%n%b'").and_return('2013-01-01 did some stuff').ordered
|
106
|
+
|
107
|
+
stub_request(:post, 'https://api.github.com/repos/wireframe/gitx/pulls').to_return(status: 201, body: new_pull_request.to_json, headers: { 'Content-Type' => 'application/json' })
|
108
|
+
stub_request(:post, 'https://api.github.com/repos/wireframe/gitx/issues/10/comments').to_return(status: 201)
|
109
|
+
|
110
|
+
VCR.use_cassette('pull_request_does_not_exist') do
|
111
|
+
cli.integrate
|
112
|
+
end
|
113
|
+
end
|
114
|
+
it 'creates github pull request' do
|
115
|
+
should meet_expectations
|
116
|
+
end
|
117
|
+
it 'creates github comment for integration' do
|
118
|
+
expect(WebMock).to have_requested(:post, 'https://api.github.com/repos/wireframe/gitx/issues/10/comments')
|
119
|
+
.with(body: { body: '[gitx] integrated into staging :twisted_rightwards_arrows:' })
|
120
|
+
end
|
121
|
+
it 'runs expected commands' do
|
122
|
+
should meet_expectations
|
123
|
+
end
|
75
124
|
end
|
76
125
|
context 'when staging branch does not exist remotely' do
|
77
126
|
let(:authorization_token) { '123123' }
|
@@ -135,7 +184,7 @@ describe Gitx::Cli::IntegrateCommand do
|
|
135
184
|
before do
|
136
185
|
expect(cli).to receive(:execute_command).with(Gitx::Cli::UpdateCommand, :update).and_raise(Gitx::Cli::BaseCommand::MergeError)
|
137
186
|
|
138
|
-
expect { cli.integrate }.to raise_error(Gitx::Cli::BaseCommand::MergeError, 'Merge
|
187
|
+
expect { cli.integrate }.to raise_error(Gitx::Cli::BaseCommand::MergeError, 'Merge conflict occurred. Please fix merge conflict and rerun the integrate command')
|
139
188
|
end
|
140
189
|
it 'raises a helpful error' do
|
141
190
|
should meet_expectations
|
@@ -151,7 +200,7 @@ describe Gitx::Cli::IntegrateCommand do
|
|
151
200
|
expect(cli).to receive(:run_cmd).with('git checkout staging').ordered
|
152
201
|
expect(cli).to receive(:run_cmd).with('git merge feature-branch').and_raise('git merge feature-branch failed').ordered
|
153
202
|
|
154
|
-
expect { cli.integrate }.to raise_error(/Merge
|
203
|
+
expect { cli.integrate }.to raise_error(/Merge conflict occurred. Please fix merge conflict and rerun command with --resume feature-branch flag/)
|
155
204
|
end
|
156
205
|
it 'raises a helpful error' do
|
157
206
|
should meet_expectations
|
@@ -210,81 +259,5 @@ describe Gitx::Cli::IntegrateCommand do
|
|
210
259
|
should meet_expectations
|
211
260
|
end
|
212
261
|
end
|
213
|
-
context 'for default integration (to staging) with --comment flag' do
|
214
|
-
let(:options) do
|
215
|
-
{ comment: true }
|
216
|
-
end
|
217
|
-
let(:authorization_token) { '123123' }
|
218
|
-
let(:remote_branch_names) { ['origin/staging'] }
|
219
|
-
before do
|
220
|
-
allow(cli).to receive(:authorization_token).and_return(authorization_token)
|
221
|
-
expect(cli).to receive(:execute_command).with(Gitx::Cli::UpdateCommand, :update)
|
222
|
-
|
223
|
-
expect(cli).to receive(:run_cmd).with('git fetch origin').ordered
|
224
|
-
expect(cli).to receive(:run_cmd).with('git branch -D staging', allow_failure: true).ordered
|
225
|
-
expect(cli).to receive(:run_cmd).with('git checkout staging').ordered
|
226
|
-
expect(cli).to receive(:run_cmd).with('git merge feature-branch').ordered
|
227
|
-
expect(cli).to receive(:run_cmd).with('git push origin HEAD').ordered
|
228
|
-
expect(cli).to receive(:run_cmd).with('git checkout feature-branch').ordered
|
229
|
-
|
230
|
-
stub_request(:post, /.*api.github.com.*/).to_return(status: 201)
|
231
|
-
|
232
|
-
VCR.use_cassette('pull_request_does_exist_with_success_status') do
|
233
|
-
cli.integrate
|
234
|
-
end
|
235
|
-
end
|
236
|
-
it 'defaults to staging branch' do
|
237
|
-
should meet_expectations
|
238
|
-
end
|
239
|
-
it 'posts comment to pull request' do
|
240
|
-
expect(WebMock).to have_requested(:post, 'https://api.github.com/repos/wireframe/gitx/issues/10/comments')
|
241
|
-
.with(body: { body: '[gitx] integrated into staging :twisted_rightwards_arrows:' })
|
242
|
-
end
|
243
|
-
end
|
244
|
-
context 'with --comment flag when a pull request doesn\'t exist for the feature-branch' do
|
245
|
-
let(:options) do
|
246
|
-
{ comment: true }
|
247
|
-
end
|
248
|
-
let(:authorization_token) { '123123' }
|
249
|
-
let(:changelog) { '* made some fixes' }
|
250
|
-
let(:new_pull_request) do
|
251
|
-
{
|
252
|
-
html_url: 'https://path/to/html/pull/request',
|
253
|
-
issue_url: 'https://api/path/to/issue/url',
|
254
|
-
number: 10,
|
255
|
-
head: {
|
256
|
-
ref: 'branch_name'
|
257
|
-
}
|
258
|
-
}
|
259
|
-
end
|
260
|
-
before do
|
261
|
-
allow(cli).to receive(:ask_editor).and_return('description')
|
262
|
-
allow(cli).to receive(:authorization_token).and_return(authorization_token)
|
263
|
-
expect(cli).to receive(:execute_command).with(Gitx::Cli::UpdateCommand, :update).twice
|
264
|
-
|
265
|
-
expect(cli).to receive(:run_cmd).with('git fetch origin').ordered
|
266
|
-
expect(cli).to receive(:run_cmd).with('git branch -D staging', allow_failure: true).ordered
|
267
|
-
expect(cli).to receive(:run_cmd).with('git checkout staging').ordered
|
268
|
-
expect(cli).to receive(:run_cmd).with('git merge feature-branch').ordered
|
269
|
-
expect(cli).to receive(:run_cmd).with('git push origin HEAD').ordered
|
270
|
-
expect(cli).to receive(:run_cmd).with('git checkout feature-branch').ordered
|
271
|
-
expect(cli).to receive(:run_cmd).with('git checkout feature-branch').ordered
|
272
|
-
expect(cli).to receive(:run_cmd).with("git log master...feature-branch --reverse --no-merges --pretty=format:'* %s%n%b'").and_return('2013-01-01 did some stuff').ordered
|
273
|
-
|
274
|
-
stub_request(:post, 'https://api.github.com/repos/wireframe/gitx/pulls').to_return(status: 201, body: new_pull_request.to_json, headers: { 'Content-Type' => 'application/json' })
|
275
|
-
stub_request(:post, 'https://api.github.com/repos/wireframe/gitx/issues/10/comments').to_return(status: 201)
|
276
|
-
|
277
|
-
VCR.use_cassette('pull_request_does_not_exist') do
|
278
|
-
cli.integrate
|
279
|
-
end
|
280
|
-
end
|
281
|
-
it 'creates github pull request' do
|
282
|
-
should meet_expectations
|
283
|
-
end
|
284
|
-
it 'creates github comment for integration' do
|
285
|
-
expect(WebMock).to have_requested(:post, 'https://api.github.com/repos/wireframe/gitx/issues/10/comments')
|
286
|
-
.with(body: { body: '[gitx] integrated into staging :twisted_rightwards_arrows:' })
|
287
|
-
end
|
288
|
-
end
|
289
262
|
end
|
290
263
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.13.
|
4
|
+
version: 2.13.4.ci.39.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Sonnek
|
@@ -14,227 +14,227 @@ dependencies:
|
|
14
14
|
name: rugged
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 0.21.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 0.21.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: thor
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ! '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ! '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: octokit
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ! '>='
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ! '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: bundler
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '1.3'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ~>
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '1.3'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- -
|
73
|
+
- - ! '>='
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- -
|
80
|
+
- - ! '>='
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: rspec
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- -
|
87
|
+
- - ~>
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '3.0'
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
-
- -
|
94
|
+
- - ~>
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '3.0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: pry
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- -
|
101
|
+
- - ! '>='
|
102
102
|
- !ruby/object:Gem::Version
|
103
103
|
version: '0'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- -
|
108
|
+
- - ! '>='
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: webmock
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- -
|
115
|
+
- - ! '>='
|
116
116
|
- !ruby/object:Gem::Version
|
117
117
|
version: '0'
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
|
-
- -
|
122
|
+
- - ! '>='
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: timecop
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
|
-
- -
|
129
|
+
- - ~>
|
130
130
|
- !ruby/object:Gem::Version
|
131
131
|
version: 0.7.0
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
|
-
- -
|
136
|
+
- - ~>
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: 0.7.0
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: vcr
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
|
-
- -
|
143
|
+
- - ! '>='
|
144
144
|
- !ruby/object:Gem::Version
|
145
145
|
version: '0'
|
146
146
|
type: :development
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
|
-
- -
|
150
|
+
- - ! '>='
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: '0'
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: guard
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
|
-
- -
|
157
|
+
- - ! '>='
|
158
158
|
- !ruby/object:Gem::Version
|
159
159
|
version: '0'
|
160
160
|
type: :development
|
161
161
|
prerelease: false
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
163
163
|
requirements:
|
164
|
-
- -
|
164
|
+
- - ! '>='
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0'
|
167
167
|
- !ruby/object:Gem::Dependency
|
168
168
|
name: guard-rspec
|
169
169
|
requirement: !ruby/object:Gem::Requirement
|
170
170
|
requirements:
|
171
|
-
- -
|
171
|
+
- - ! '>='
|
172
172
|
- !ruby/object:Gem::Version
|
173
173
|
version: '0'
|
174
174
|
type: :development
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
|
-
- -
|
178
|
+
- - ! '>='
|
179
179
|
- !ruby/object:Gem::Version
|
180
180
|
version: '0'
|
181
181
|
- !ruby/object:Gem::Dependency
|
182
182
|
name: coveralls
|
183
183
|
requirement: !ruby/object:Gem::Requirement
|
184
184
|
requirements:
|
185
|
-
- -
|
185
|
+
- - ! '>='
|
186
186
|
- !ruby/object:Gem::Version
|
187
187
|
version: '0'
|
188
188
|
type: :development
|
189
189
|
prerelease: false
|
190
190
|
version_requirements: !ruby/object:Gem::Requirement
|
191
191
|
requirements:
|
192
|
-
- -
|
192
|
+
- - ! '>='
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '0'
|
195
195
|
- !ruby/object:Gem::Dependency
|
196
196
|
name: terminal-notifier
|
197
197
|
requirement: !ruby/object:Gem::Requirement
|
198
198
|
requirements:
|
199
|
-
- -
|
199
|
+
- - ! '>='
|
200
200
|
- !ruby/object:Gem::Version
|
201
201
|
version: '0'
|
202
202
|
type: :development
|
203
203
|
prerelease: false
|
204
204
|
version_requirements: !ruby/object:Gem::Requirement
|
205
205
|
requirements:
|
206
|
-
- -
|
206
|
+
- - ! '>='
|
207
207
|
- !ruby/object:Gem::Version
|
208
208
|
version: '0'
|
209
209
|
- !ruby/object:Gem::Dependency
|
210
210
|
name: terminal-notifier-guard
|
211
211
|
requirement: !ruby/object:Gem::Requirement
|
212
212
|
requirements:
|
213
|
-
- -
|
213
|
+
- - ! '>='
|
214
214
|
- !ruby/object:Gem::Version
|
215
215
|
version: '0'
|
216
216
|
type: :development
|
217
217
|
prerelease: false
|
218
218
|
version_requirements: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
|
-
- -
|
220
|
+
- - ! '>='
|
221
221
|
- !ruby/object:Gem::Version
|
222
222
|
version: '0'
|
223
223
|
- !ruby/object:Gem::Dependency
|
224
224
|
name: rubocop
|
225
225
|
requirement: !ruby/object:Gem::Requirement
|
226
226
|
requirements:
|
227
|
-
- -
|
227
|
+
- - ! '>='
|
228
228
|
- !ruby/object:Gem::Version
|
229
229
|
version: '0'
|
230
230
|
type: :development
|
231
231
|
prerelease: false
|
232
232
|
version_requirements: !ruby/object:Gem::Requirement
|
233
233
|
requirements:
|
234
|
-
- -
|
234
|
+
- - ! '>='
|
235
235
|
- !ruby/object:Gem::Version
|
236
236
|
version: '0'
|
237
|
-
description: Git eXtensions for improved development
|
237
|
+
description: Git eXtensions for improved development workflows
|
238
238
|
email:
|
239
239
|
- ryan.sonnek@gmail.com
|
240
240
|
executables:
|
@@ -251,12 +251,12 @@ executables:
|
|
251
251
|
extensions: []
|
252
252
|
extra_rdoc_files: []
|
253
253
|
files:
|
254
|
-
-
|
255
|
-
-
|
256
|
-
-
|
257
|
-
-
|
258
|
-
-
|
259
|
-
-
|
254
|
+
- .gitignore
|
255
|
+
- .hound.yml
|
256
|
+
- .rspec
|
257
|
+
- .rubocop.yml
|
258
|
+
- .ruby-version
|
259
|
+
- .travis.yml
|
260
260
|
- CONTRIBUTING.md
|
261
261
|
- Gemfile
|
262
262
|
- Guardfile
|
@@ -324,17 +324,17 @@ require_paths:
|
|
324
324
|
- lib
|
325
325
|
required_ruby_version: !ruby/object:Gem::Requirement
|
326
326
|
requirements:
|
327
|
-
- -
|
327
|
+
- - ! '>='
|
328
328
|
- !ruby/object:Gem::Version
|
329
329
|
version: '0'
|
330
330
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
331
331
|
requirements:
|
332
|
-
- -
|
332
|
+
- - ! '>'
|
333
333
|
- !ruby/object:Gem::Version
|
334
|
-
version:
|
334
|
+
version: 1.3.1
|
335
335
|
requirements: []
|
336
336
|
rubyforge_project:
|
337
|
-
rubygems_version: 2.
|
337
|
+
rubygems_version: 2.4.5
|
338
338
|
signing_key:
|
339
339
|
specification_version: 4
|
340
340
|
summary: Utility scripts for Git to increase productivity for common operations
|