git-process 1.0.11 → 1.1.0
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/CHANGELOG.md +37 -9
- data/Gemfile +2 -2
- data/Gemfile.lock +17 -17
- data/README.md +14 -7
- data/bin/git-new-fb +10 -2
- data/bin/git-pull-request +30 -6
- data/bin/git-sync +5 -2
- data/bin/git-to-master +62 -11
- data/git-process.gemspec +15 -15
- data/lib/git-process/abstract_error_builder.rb +0 -3
- data/lib/git-process/changed_file_helper.rb +30 -24
- data/lib/git-process/git_abstract_merge_error_builder.rb +31 -11
- data/lib/git-process/git_branch.rb +5 -0
- data/lib/git-process/git_config.rb +153 -0
- data/lib/git-process/git_lib.rb +212 -164
- data/lib/git-process/git_logger.rb +84 -0
- data/lib/git-process/git_merge_error.rb +3 -14
- data/lib/git-process/git_process.rb +44 -73
- data/lib/git-process/git_process_options.rb +6 -6
- data/lib/git-process/git_rebase_error.rb +4 -13
- data/lib/git-process/git_remote.rb +254 -0
- data/lib/git-process/github_configuration.rb +298 -0
- data/lib/git-process/github_pull_request.rb +65 -27
- data/lib/git-process/new_fb.rb +14 -4
- data/lib/git-process/parked_changes_error.rb +1 -1
- data/lib/git-process/pull_request.rb +100 -13
- data/lib/git-process/pull_request_error.rb +25 -0
- data/lib/git-process/rebase_to_master.rb +47 -27
- data/lib/git-process/sync.rb +48 -33
- data/lib/git-process/uncommitted_changes_error.rb +1 -1
- data/lib/git-process/version.rb +2 -2
- data/spec/GitRepoHelper.rb +48 -25
- data/spec/changed_file_helper_spec.rb +39 -58
- data/spec/git_abstract_merge_error_builder_spec.rb +42 -33
- data/spec/git_branch_spec.rb +30 -30
- data/spec/git_config_spec.rb +45 -0
- data/spec/git_lib_spec.rb +103 -122
- data/spec/git_logger_spec.rb +66 -0
- data/spec/git_process_spec.rb +81 -81
- data/spec/git_remote_spec.rb +188 -0
- data/spec/git_status_spec.rb +36 -36
- data/spec/github_configuration_spec.rb +152 -0
- data/spec/github_pull_request_spec.rb +39 -35
- data/spec/github_test_helper.rb +49 -0
- data/spec/new_fb_spec.rb +65 -24
- data/spec/pull_request_helper.rb +94 -0
- data/spec/pull_request_spec.rb +128 -0
- data/spec/rebase_to_master_spec.rb +241 -145
- data/spec/spec_helper.rb +20 -0
- data/spec/sync_spec.rb +115 -109
- metadata +34 -20
- data/lib/git-process/github_client.rb +0 -83
- data/lib/git-process/github_service.rb +0 -174
- data/spec/github_service_spec.rb +0 -211
data/spec/spec_helper.rb
CHANGED
@@ -1 +1,21 @@
|
|
1
1
|
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '../lib')
|
2
|
+
|
3
|
+
require 'GitRepoHelper'
|
4
|
+
require 'pull_request_helper'
|
5
|
+
|
6
|
+
RSpec.configure do |config|
|
7
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
8
|
+
|
9
|
+
config.include GitRepoHelper, :git_repo_helper
|
10
|
+
|
11
|
+
config.before(:each, :git_repo_helper) do
|
12
|
+
create_files(%w(.gitignore))
|
13
|
+
gitlib.commit('initial')
|
14
|
+
end
|
15
|
+
|
16
|
+
|
17
|
+
config.after(:each, :git_repo_helper) do
|
18
|
+
rm_rf(gitlib.workdir)
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
data/spec/sync_spec.rb
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
require 'git-process/sync'
|
2
2
|
require 'GitRepoHelper'
|
3
3
|
|
4
|
-
describe
|
4
|
+
describe Sync do
|
5
5
|
include GitRepoHelper
|
6
6
|
|
7
7
|
before(:each) do
|
8
8
|
create_files(%w(.gitignore))
|
9
|
-
|
9
|
+
gitlib.commit('initial')
|
10
10
|
end
|
11
11
|
|
12
12
|
|
13
13
|
after(:each) do
|
14
|
-
rm_rf(
|
14
|
+
rm_rf(gitlib.workdir)
|
15
15
|
end
|
16
16
|
|
17
17
|
|
@@ -20,59 +20,61 @@ describe GitProc::Sync do
|
|
20
20
|
end
|
21
21
|
|
22
22
|
|
23
|
-
def create_process(
|
24
|
-
GitProc::Sync.new(
|
23
|
+
def create_process(base = gitlib, opts = {})
|
24
|
+
GitProc::Sync.new(base, opts.merge({:rebase => false, :force => false}))
|
25
25
|
end
|
26
26
|
|
27
27
|
|
28
|
-
it
|
28
|
+
it 'should work when pushing with fast-forward' do
|
29
29
|
change_file_and_commit('a', '')
|
30
30
|
|
31
|
-
|
31
|
+
gitlib.branch('fb', :base_branch => 'master')
|
32
32
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
33
|
+
clone_repo('fb') do |gl|
|
34
|
+
change_file_and_commit('a', 'hello', gl)
|
35
|
+
gl.branches.include?('origin/fb').should be_true
|
36
|
+
GitProc::Sync.new(gl, :rebase => false, :force => false, :log_level => log_level).runner
|
37
|
+
gl.branches.include?('origin/fb').should be_true
|
38
|
+
gitlib.branches.include?('fb').should be_true
|
39
|
+
end
|
39
40
|
end
|
40
41
|
|
41
42
|
|
42
43
|
it "should work with a different remote server name" do
|
43
44
|
change_file_and_commit('a', '')
|
44
45
|
|
45
|
-
|
46
|
+
gitlib.branch('fb', :base_branch => 'master')
|
46
47
|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
48
|
+
clone_repo('fb', 'a_remote') do |gl|
|
49
|
+
change_file_and_commit('a', 'hello', gl)
|
50
|
+
gl.branches.include?('a_remote/fb').should be_true
|
51
|
+
GitProc::Sync.new(gl, :rebase => false, :force => false, :log_level => log_level).runner
|
52
|
+
gl.branches.include?('a_remote/fb').should be_true
|
53
|
+
gitlib.branches.include?('fb').should be_true
|
54
|
+
end
|
53
55
|
end
|
54
56
|
|
55
57
|
|
56
|
-
describe
|
58
|
+
describe 'when forcing the push' do
|
57
59
|
|
58
|
-
def create_process(
|
59
|
-
GitProc::Sync.new(
|
60
|
+
def create_process(gitlib, opts)
|
61
|
+
GitProc::Sync.new(gitlib, opts.merge({:rebase => false, :force => true}))
|
60
62
|
end
|
61
63
|
|
62
64
|
|
63
65
|
it "should work when pushing with non-fast-forward" do
|
64
66
|
change_file_and_commit('a', '')
|
65
67
|
|
66
|
-
|
68
|
+
gitlib.branch('fb', :base_branch => 'master')
|
67
69
|
|
68
|
-
|
69
|
-
|
70
|
-
change_file_and_commit('a', 'hello',
|
70
|
+
clone_repo('fb') do |gl|
|
71
|
+
gitlib.checkout('fb') do
|
72
|
+
change_file_and_commit('a', 'hello', gitlib)
|
71
73
|
end
|
72
74
|
|
73
75
|
expect {
|
74
|
-
GitProc::Sync.new(
|
75
|
-
}.to_not raise_error
|
76
|
+
GitProc::Sync.new(gl, :rebase => false, :force => true, :log_level => log_level).runner
|
77
|
+
}.to_not raise_error GitExecuteError
|
76
78
|
end
|
77
79
|
end
|
78
80
|
|
@@ -81,25 +83,24 @@ describe GitProc::Sync do
|
|
81
83
|
|
82
84
|
describe "when changes are made upstream" do
|
83
85
|
|
84
|
-
def create_process(
|
85
|
-
GitProc::Sync.new(
|
86
|
+
def create_process(base, opts = {})
|
87
|
+
GitProc::Sync.new(base, opts.merge({:rebase => false, :force => false}))
|
86
88
|
end
|
87
89
|
|
88
90
|
|
89
91
|
it "should work when pushing with non-fast-forward by merging" do
|
90
92
|
change_file_and_commit('a', '')
|
91
93
|
|
92
|
-
|
94
|
+
gitlib.branch('fb', :base_branch => 'master')
|
93
95
|
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
change_file_and_commit('a', 'hello', gitprocess)
|
96
|
+
clone_repo('fb') do |gl|
|
97
|
+
gitlib.checkout('fb') do
|
98
|
+
change_file_and_commit('a', 'hello', gitlib)
|
98
99
|
end
|
99
100
|
|
100
101
|
expect {
|
101
|
-
|
102
|
-
}.to_not raise_error
|
102
|
+
create_process(gl).runner
|
103
|
+
}.to_not raise_error GitExecuteError
|
103
104
|
end
|
104
105
|
end
|
105
106
|
|
@@ -108,40 +109,42 @@ describe GitProc::Sync do
|
|
108
109
|
|
109
110
|
describe "when rebasing" do
|
110
111
|
|
111
|
-
def create_process(
|
112
|
-
GitProc::Sync.new(
|
112
|
+
def create_process(gitlib, opts = {})
|
113
|
+
GitProc::Sync.new(gitlib, opts.merge({:rebase => true, :force => false}))
|
113
114
|
end
|
114
115
|
|
115
116
|
|
116
117
|
it "should work when pushing (non-fast-forward)" do
|
117
118
|
change_file_and_commit('a', '')
|
118
119
|
|
119
|
-
|
120
|
-
|
120
|
+
clone_repo do |gl|
|
121
|
+
gl.checkout('fb', :new_branch => 'master')
|
121
122
|
|
122
|
-
|
123
|
+
expect { create_process(gl).runner }.to_not raise_error GitExecuteError
|
123
124
|
|
124
|
-
|
125
|
+
change_file_and_commit('a', 'hello', gitlib)
|
125
126
|
|
126
|
-
|
127
|
+
expect { create_process(gl).runner }.to_not raise_error GitExecuteError
|
128
|
+
end
|
127
129
|
end
|
128
130
|
|
129
131
|
|
130
132
|
it "should merge and then rebase if remote feature branch changed" do
|
131
133
|
change_file_and_commit('a', '')
|
132
134
|
|
133
|
-
|
135
|
+
gitlib.checkout('fb', :new_branch => 'master')
|
134
136
|
|
135
|
-
|
136
|
-
|
137
|
+
clone_repo do |gl|
|
138
|
+
gl.checkout('fb', :new_branch => 'origin/master')
|
137
139
|
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
140
|
+
change_file_and_commit('b', 'hello', gl)
|
141
|
+
change_file_and_commit('a', 'hello', gitlib)
|
142
|
+
change_file_and_commit('b', 'goodbye', gl)
|
143
|
+
change_file_and_commit('a', 'goodbye', gitlib)
|
144
|
+
gitlib.checkout('master')
|
143
145
|
|
144
|
-
|
146
|
+
expect { create_process(gl).runner }.to_not raise_error GitExecuteError
|
147
|
+
end
|
145
148
|
end
|
146
149
|
|
147
150
|
end
|
@@ -157,18 +160,18 @@ describe GitProc::Sync do
|
|
157
160
|
it "should not try to push" do
|
158
161
|
change_file_and_commit('a', '')
|
159
162
|
|
160
|
-
|
163
|
+
gitlib.branch('fb', :base_branch => 'master')
|
161
164
|
|
162
|
-
|
163
|
-
|
164
|
-
change_file_and_commit('a', 'hello',
|
165
|
-
end
|
165
|
+
clone_repo('fb') do |gl|
|
166
|
+
gitlib.checkout('fb')
|
167
|
+
change_file_and_commit('a', 'hello', gitlib)
|
166
168
|
|
167
|
-
|
168
|
-
|
169
|
-
|
169
|
+
sp = GitProc::Sync.new(gl, :rebase => true, :force => false, :local => true, :log_level => log_level)
|
170
|
+
gl.should_receive(:fetch) # want to get remote changes
|
171
|
+
gl.should_not_receive(:push) # ...but not push any
|
170
172
|
|
171
|
-
|
173
|
+
sp.runner
|
174
|
+
end
|
172
175
|
end
|
173
176
|
|
174
177
|
end
|
@@ -176,19 +179,19 @@ describe GitProc::Sync do
|
|
176
179
|
|
177
180
|
describe "when there is no remote" do
|
178
181
|
|
179
|
-
def create_process(
|
180
|
-
GitProc::Sync.new(
|
182
|
+
def create_process(base, opts)
|
183
|
+
GitProc::Sync.new(base, opts.merge({:rebase => true, :force => false, :local => false}))
|
181
184
|
end
|
182
185
|
|
183
186
|
|
184
187
|
it "should not try to fetch or push" do
|
185
188
|
change_file_and_commit('a', '')
|
186
189
|
|
187
|
-
|
190
|
+
gitlib.branch('fb', :base_branch => 'master')
|
188
191
|
|
189
|
-
sp = GitProc::Sync.new(
|
190
|
-
|
191
|
-
|
192
|
+
sp = GitProc::Sync.new(gitlib, :rebase => true, :force => false, :local => true, :log_level => log_level)
|
193
|
+
gitlib.should_not_receive(:fetch)
|
194
|
+
gitlib.should_not_receive(:push)
|
192
195
|
|
193
196
|
sp.runner
|
194
197
|
end
|
@@ -198,75 +201,75 @@ describe GitProc::Sync do
|
|
198
201
|
|
199
202
|
describe "when default rebase flag is used" do
|
200
203
|
|
201
|
-
def create_process(
|
202
|
-
GitProc::Sync.new(
|
204
|
+
def create_process(base = gitlib, opts = {})
|
205
|
+
GitProc::Sync.new(base, opts.merge({:rebase => false, :force => false, :local => false}))
|
203
206
|
end
|
204
207
|
|
205
208
|
|
206
209
|
it "should try to rebase by flag" do
|
207
|
-
change_file_and_commit('a', '',
|
210
|
+
change_file_and_commit('a', '', gitlib)
|
208
211
|
|
209
|
-
|
212
|
+
gitlib.branch('fb', :base_branch => 'master')
|
210
213
|
|
211
|
-
sp = GitProc::Sync.new(
|
212
|
-
|
213
|
-
|
214
|
+
sp = GitProc::Sync.new(gitlib, :rebase => true, :force => false, :local => true, :log_level => log_level)
|
215
|
+
gitlib.should_receive(:rebase)
|
216
|
+
gitlib.should_not_receive(:merge)
|
214
217
|
|
215
218
|
sp.runner
|
216
219
|
end
|
217
220
|
|
218
221
|
|
219
222
|
it "should try to rebase by config" do
|
220
|
-
change_file_and_commit('a', '',
|
223
|
+
change_file_and_commit('a', '', gitlib)
|
221
224
|
|
222
|
-
|
223
|
-
|
225
|
+
gitlib.branch('fb', :base_branch => 'master')
|
226
|
+
gitlib.config['gitProcess.defaultRebaseSync'] = 'true'
|
224
227
|
|
225
|
-
sp = GitProc::Sync.new(
|
226
|
-
|
227
|
-
|
228
|
+
sp = GitProc::Sync.new(gitlib, :rebase => false, :force => false, :local => true, :log_level => log_level)
|
229
|
+
gitlib.should_receive(:rebase)
|
230
|
+
gitlib.should_not_receive(:merge)
|
228
231
|
|
229
232
|
sp.runner
|
230
233
|
end
|
231
234
|
|
232
235
|
|
233
236
|
it "should not try to rebase by false config" do
|
234
|
-
change_file_and_commit('a', '',
|
237
|
+
change_file_and_commit('a', '', gitlib)
|
235
238
|
|
236
|
-
|
237
|
-
|
239
|
+
gitlib.branch('fb', :base_branch => 'master')
|
240
|
+
gitlib.config['gitProcess.defaultRebaseSync'] = 'false'
|
238
241
|
|
239
|
-
sp = GitProc::Sync.new(
|
240
|
-
|
241
|
-
|
242
|
+
sp = GitProc::Sync.new(gitlib, :rebase => false, :force => false, :local => true, :log_level => log_level)
|
243
|
+
gitlib.should_not_receive(:rebase)
|
244
|
+
gitlib.should_receive(:merge)
|
242
245
|
|
243
246
|
sp.runner
|
244
247
|
end
|
245
248
|
|
246
249
|
|
247
250
|
it "should not try to rebase by false config" do
|
248
|
-
change_file_and_commit('a', '',
|
251
|
+
change_file_and_commit('a', '', gitlib)
|
249
252
|
|
250
|
-
|
251
|
-
|
253
|
+
gitlib.branch('fb', :base_branch => 'master')
|
254
|
+
gitlib.config['gitProcess.defaultRebaseSync'] = 'false'
|
252
255
|
|
253
|
-
sp = GitProc::Sync.new(
|
254
|
-
|
255
|
-
|
256
|
+
sp = GitProc::Sync.new(gitlib, :rebase => false, :force => false, :local => true, :log_level => log_level)
|
257
|
+
gitlib.should_not_receive(:rebase)
|
258
|
+
gitlib.should_receive(:merge)
|
256
259
|
|
257
260
|
sp.runner
|
258
261
|
end
|
259
262
|
|
260
263
|
|
261
264
|
it "should try to rebase by true config" do
|
262
|
-
change_file_and_commit('a', '',
|
265
|
+
change_file_and_commit('a', '', gitlib)
|
263
266
|
|
264
|
-
|
265
|
-
|
267
|
+
gitlib.branch('fb', :base_branch => 'master')
|
268
|
+
gitlib.config['gitProcess.defaultRebaseSync'] = 'true'
|
266
269
|
|
267
|
-
sp = GitProc::Sync.new(
|
268
|
-
|
269
|
-
|
270
|
+
sp = GitProc::Sync.new(gitlib, :rebase => false, :force => false, :local => true, :log_level => log_level)
|
271
|
+
gitlib.should_receive(:rebase)
|
272
|
+
gitlib.should_not_receive(:merge)
|
270
273
|
|
271
274
|
sp.runner
|
272
275
|
end
|
@@ -277,22 +280,25 @@ describe GitProc::Sync do
|
|
277
280
|
it "should work with a different remote server name than 'origin'" do
|
278
281
|
change_file_and_commit('a', '')
|
279
282
|
|
280
|
-
|
283
|
+
gitlib.branch('fb', :base_branch => 'master')
|
284
|
+
|
285
|
+
clone_repo('fb', 'a_remote') do |gl|
|
286
|
+
change_file_and_commit('a', 'hello', gl)
|
287
|
+
gl.branches.include?('a_remote/fb').should be_true
|
281
288
|
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
gitprocess.branches.include?('fb').should be_true
|
289
|
+
GitProc::Sync.new(gl, :rebase => false, :force => false, :log_level => log_level).runner
|
290
|
+
|
291
|
+
gl.branches.include?('a_remote/fb').should be_true
|
292
|
+
gitlib.branches.include?('fb').should be_true
|
293
|
+
end
|
288
294
|
end
|
289
295
|
|
290
296
|
|
291
297
|
it 'should fail when removing current feature while on _parking_' do
|
292
|
-
|
298
|
+
gitlib.checkout('_parking_', :new_branch => 'master')
|
293
299
|
change_file_and_commit('a', '')
|
294
300
|
|
295
|
-
expect { gitprocess.verify_preconditions }.to raise_error
|
301
|
+
expect { gitprocess.verify_preconditions }.to raise_error ParkedChangesError
|
296
302
|
end
|
297
303
|
|
298
304
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-process
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
|
+
- 1
|
8
9
|
- 0
|
9
|
-
|
10
|
-
version: 1.0.11
|
10
|
+
version: 1.1.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jim Moore
|
@@ -15,27 +15,27 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2013-
|
18
|
+
date: 2013-04-21 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
|
-
prerelease: false
|
22
21
|
name: octokit
|
22
|
+
prerelease: false
|
23
|
+
type: :runtime
|
23
24
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
24
25
|
none: false
|
25
26
|
requirements:
|
26
27
|
- - ~>
|
27
28
|
- !ruby/object:Gem::Version
|
28
|
-
hash:
|
29
|
+
hash: 63
|
29
30
|
segments:
|
30
31
|
- 1
|
31
|
-
-
|
32
|
-
|
33
|
-
version: 1.22.0
|
34
|
-
type: :runtime
|
32
|
+
- 24
|
33
|
+
version: "1.24"
|
35
34
|
requirement: *id001
|
36
35
|
- !ruby/object:Gem::Dependency
|
37
|
-
prerelease: false
|
38
36
|
name: json
|
37
|
+
prerelease: false
|
38
|
+
type: :runtime
|
39
39
|
version_requirements: &id002 !ruby/object:Gem::Requirement
|
40
40
|
none: false
|
41
41
|
requirements:
|
@@ -47,11 +47,11 @@ dependencies:
|
|
47
47
|
- 7
|
48
48
|
- 3
|
49
49
|
version: 1.7.3
|
50
|
-
type: :runtime
|
51
50
|
requirement: *id002
|
52
51
|
- !ruby/object:Gem::Dependency
|
53
|
-
prerelease: false
|
54
52
|
name: trollop
|
53
|
+
prerelease: false
|
54
|
+
type: :runtime
|
55
55
|
version_requirements: &id003 !ruby/object:Gem::Requirement
|
56
56
|
none: false
|
57
57
|
requirements:
|
@@ -63,11 +63,11 @@ dependencies:
|
|
63
63
|
- 16
|
64
64
|
- 2
|
65
65
|
version: 1.16.2
|
66
|
-
type: :runtime
|
67
66
|
requirement: *id003
|
68
67
|
- !ruby/object:Gem::Dependency
|
69
|
-
prerelease: false
|
70
68
|
name: highline
|
69
|
+
prerelease: false
|
70
|
+
type: :runtime
|
71
71
|
version_requirements: &id004 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
@@ -79,7 +79,6 @@ dependencies:
|
|
79
79
|
- 6
|
80
80
|
- 13
|
81
81
|
version: 1.6.13
|
82
|
-
type: :runtime
|
83
82
|
requirement: *id004
|
84
83
|
description: A set of scripts to make working with git easier and more consistent
|
85
84
|
email:
|
@@ -110,19 +109,22 @@ files:
|
|
110
109
|
- lib/git-process/git_abstract_merge_error_builder.rb
|
111
110
|
- lib/git-process/git_branch.rb
|
112
111
|
- lib/git-process/git_branches.rb
|
112
|
+
- lib/git-process/git_config.rb
|
113
113
|
- lib/git-process/git_lib.rb
|
114
|
+
- lib/git-process/git_logger.rb
|
114
115
|
- lib/git-process/git_merge_error.rb
|
115
116
|
- lib/git-process/git_process.rb
|
116
117
|
- lib/git-process/git_process_error.rb
|
117
118
|
- lib/git-process/git_process_options.rb
|
118
119
|
- lib/git-process/git_rebase_error.rb
|
120
|
+
- lib/git-process/git_remote.rb
|
119
121
|
- lib/git-process/git_status.rb
|
120
|
-
- lib/git-process/
|
122
|
+
- lib/git-process/github_configuration.rb
|
121
123
|
- lib/git-process/github_pull_request.rb
|
122
|
-
- lib/git-process/github_service.rb
|
123
124
|
- lib/git-process/new_fb.rb
|
124
125
|
- lib/git-process/parked_changes_error.rb
|
125
126
|
- lib/git-process/pull_request.rb
|
127
|
+
- lib/git-process/pull_request_error.rb
|
126
128
|
- lib/git-process/rebase_to_master.rb
|
127
129
|
- lib/git-process/sync.rb
|
128
130
|
- lib/git-process/uncommitted_changes_error.rb
|
@@ -132,12 +134,18 @@ files:
|
|
132
134
|
- spec/changed_file_helper_spec.rb
|
133
135
|
- spec/git_abstract_merge_error_builder_spec.rb
|
134
136
|
- spec/git_branch_spec.rb
|
137
|
+
- spec/git_config_spec.rb
|
135
138
|
- spec/git_lib_spec.rb
|
139
|
+
- spec/git_logger_spec.rb
|
136
140
|
- spec/git_process_spec.rb
|
141
|
+
- spec/git_remote_spec.rb
|
137
142
|
- spec/git_status_spec.rb
|
143
|
+
- spec/github_configuration_spec.rb
|
138
144
|
- spec/github_pull_request_spec.rb
|
139
|
-
- spec/
|
145
|
+
- spec/github_test_helper.rb
|
140
146
|
- spec/new_fb_spec.rb
|
147
|
+
- spec/pull_request_helper.rb
|
148
|
+
- spec/pull_request_spec.rb
|
141
149
|
- spec/rebase_to_master_spec.rb
|
142
150
|
- spec/spec_helper.rb
|
143
151
|
- spec/sync_spec.rb
|
@@ -182,12 +190,18 @@ test_files:
|
|
182
190
|
- spec/changed_file_helper_spec.rb
|
183
191
|
- spec/git_abstract_merge_error_builder_spec.rb
|
184
192
|
- spec/git_branch_spec.rb
|
193
|
+
- spec/git_config_spec.rb
|
185
194
|
- spec/git_lib_spec.rb
|
195
|
+
- spec/git_logger_spec.rb
|
186
196
|
- spec/git_process_spec.rb
|
197
|
+
- spec/git_remote_spec.rb
|
187
198
|
- spec/git_status_spec.rb
|
199
|
+
- spec/github_configuration_spec.rb
|
188
200
|
- spec/github_pull_request_spec.rb
|
189
|
-
- spec/
|
201
|
+
- spec/github_test_helper.rb
|
190
202
|
- spec/new_fb_spec.rb
|
203
|
+
- spec/pull_request_helper.rb
|
204
|
+
- spec/pull_request_spec.rb
|
191
205
|
- spec/rebase_to_master_spec.rb
|
192
206
|
- spec/spec_helper.rb
|
193
207
|
- spec/sync_spec.rb
|