git-process 1.1.4 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. data/CHANGELOG.md +14 -1
  2. data/LICENSE +193 -22
  3. data/README.md +212 -71
  4. data/man/git-process.1 +371 -0
  5. metadata +52 -140
  6. data/Gemfile +0 -20
  7. data/Gemfile.lock +0 -53
  8. data/Rakefile +0 -16
  9. data/bin/git-new-fb +0 -58
  10. data/bin/git-pull-request +0 -107
  11. data/bin/git-sync +0 -73
  12. data/bin/git-to-master +0 -133
  13. data/git-process.gemspec +0 -25
  14. data/lib/git-process/abstract_error_builder.rb +0 -53
  15. data/lib/git-process/changed_file_helper.rb +0 -115
  16. data/lib/git-process/git_abstract_merge_error_builder.rb +0 -146
  17. data/lib/git-process/git_branch.rb +0 -105
  18. data/lib/git-process/git_branches.rb +0 -73
  19. data/lib/git-process/git_config.rb +0 -153
  20. data/lib/git-process/git_lib.rb +0 -512
  21. data/lib/git-process/git_logger.rb +0 -84
  22. data/lib/git-process/git_merge_error.rb +0 -28
  23. data/lib/git-process/git_process.rb +0 -172
  24. data/lib/git-process/git_process_error.rb +0 -18
  25. data/lib/git-process/git_process_options.rb +0 -99
  26. data/lib/git-process/git_rebase_error.rb +0 -30
  27. data/lib/git-process/git_remote.rb +0 -256
  28. data/lib/git-process/git_status.rb +0 -108
  29. data/lib/git-process/github_configuration.rb +0 -298
  30. data/lib/git-process/github_pull_request.rb +0 -151
  31. data/lib/git-process/new_fb.rb +0 -50
  32. data/lib/git-process/parked_changes_error.rb +0 -41
  33. data/lib/git-process/pull_request.rb +0 -134
  34. data/lib/git-process/pull_request_error.rb +0 -25
  35. data/lib/git-process/rebase_to_master.rb +0 -148
  36. data/lib/git-process/sync.rb +0 -136
  37. data/lib/git-process/uncommitted_changes_error.rb +0 -23
  38. data/lib/git-process/version.rb +0 -22
  39. data/spec/FileHelpers.rb +0 -19
  40. data/spec/GitRepoHelper.rb +0 -123
  41. data/spec/changed_file_helper_spec.rb +0 -127
  42. data/spec/git_abstract_merge_error_builder_spec.rb +0 -126
  43. data/spec/git_branch_spec.rb +0 -123
  44. data/spec/git_config_spec.rb +0 -45
  45. data/spec/git_lib_spec.rb +0 -176
  46. data/spec/git_logger_spec.rb +0 -66
  47. data/spec/git_process_spec.rb +0 -208
  48. data/spec/git_remote_spec.rb +0 -227
  49. data/spec/git_status_spec.rb +0 -122
  50. data/spec/github_configuration_spec.rb +0 -152
  51. data/spec/github_pull_request_spec.rb +0 -96
  52. data/spec/github_test_helper.rb +0 -49
  53. data/spec/new_fb_spec.rb +0 -130
  54. data/spec/pull_request_helper.rb +0 -94
  55. data/spec/pull_request_spec.rb +0 -128
  56. data/spec/rebase_to_master_spec.rb +0 -429
  57. data/spec/spec_helper.rb +0 -21
  58. data/spec/sync_spec.rb +0 -304
data/man/git-process.1 ADDED
@@ -0,0 +1,371 @@
1
+ '\" t
2
+ .\" Title: git-process
3
+ .\" Author: [see the "AUTHOR" section]
4
+ .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
5
+ .\" Date: 09/11/2013
6
+ .\" Manual: \ \&
7
+ .\" Source: \ \&
8
+ .\" Language: English
9
+ .\"
10
+ .TH "GIT\-PROCESS" "1" "09/11/2013" "\ \&" "\ \&"
11
+ .\" -----------------------------------------------------------------
12
+ .\" * Define some portability stuff
13
+ .\" -----------------------------------------------------------------
14
+ .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15
+ .\" http://bugs.debian.org/507673
16
+ .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17
+ .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18
+ .ie \n(.g .ds Aq \(aq
19
+ .el .ds Aq '
20
+ .\" -----------------------------------------------------------------
21
+ .\" * set default formatting
22
+ .\" -----------------------------------------------------------------
23
+ .\" disable hyphenation
24
+ .nh
25
+ .\" disable justification (adjust text to left margin only)
26
+ .ad l
27
+ .\" -----------------------------------------------------------------
28
+ .\" * MAIN CONTENT STARTS HERE *
29
+ .\" -----------------------------------------------------------------
30
+ .SH "NAME"
31
+ git-process \- A suite of tools to make it easy to use an easy and robust git process\&.
32
+ .SH "DESCRIPTION"
33
+ .sp
34
+ \fIgit\-process(1)\fR consists of a small suite of tools that make it easy to follow a simple, consistent process that scales from simple one\-person projects to very large (dozens of developers) collaboration\&. It does this by taking advantage of "classic" methodologies like "Git Flow" and GitHub pull requests to have "just enough" process\&. See \fBWORKFLOW EXAMPLES\fR to see this in practice\&.
35
+ .SH "COMMON OPTIONS"
36
+ .PP
37
+ \fB\-\-info\fR
38
+ .RS 4
39
+ Informational messages; show the major things this is doing (\fBdefault: true\fR)
40
+ .RE
41
+ .PP
42
+ \fB\-q, \-\-quiet\fR
43
+ .RS 4
44
+ Quiet messages; only show errors
45
+ .RE
46
+ .PP
47
+ \fB\-v, \-\-verbose\fR
48
+ .RS 4
49
+ Verbose messages; show lots of details on what this is doing
50
+ .RE
51
+ .PP
52
+ \fB\-\-version\fR
53
+ .RS 4
54
+ Print version and exit
55
+ .RE
56
+ .SH "CONFIGURATION"
57
+ .PP
58
+ \fBgitProcess\&.remoteName\fR
59
+ .RS 4
60
+ Allows you to explicitly set the remote server name to use\&. Defaults to the first server name reported by
61
+ \fIgit\-remote(1)\fR\&.
62
+ .RE
63
+ .PP
64
+ \fBgitProcess\&.integrationBranch\fR
65
+ .RS 4
66
+ Allows you to explicitly set the integration branch to use\&. Defaults to "master"\&.
67
+ .RE
68
+ .PP
69
+ \fBgitProcess\&.defaultRebaseSync\fR
70
+ .RS 4
71
+ Should
72
+ \fIgit\-sync(1)\fR
73
+ use
74
+ \fB\-\-rebase\fR
75
+ by default instead of
76
+ \fB\-\-merge\fR? Defaults to
77
+ \fBtrue\fR\&.
78
+ .RE
79
+ .PP
80
+ \fBgitProcess\&.github\&.authtoken\fR
81
+ .RS 4
82
+ Not meant to be set manually, this is the OAuth token used to communicate with the GitHub server\&. If it is not set, the user will be prompted for their credentials\&.
83
+ .RE
84
+ .PP
85
+ \fBgithub\&.user\fR
86
+ .RS 4
87
+ If OAuth needs to prompt for credentials, if this value is set then it is used as the username\&. Otherwise it is unused\&.
88
+ .RE
89
+ .SH "WORKFLOW EXAMPLES"
90
+ .SS "WORKING ALONE ON A LOCAL\-ONLY PROJECT"
91
+ .sp
92
+ Jim is working on "my_project" and needs to start work on a new feature\&.
93
+ .sp
94
+ .if n \{\
95
+ .RS 4
96
+ .\}
97
+ .nf
98
+ [a_branch]$ git new\-fb save_the_planet
99
+ Creating save_tp off of master
100
+ [save_the_planet]$
101
+ .fi
102
+ .if n \{\
103
+ .RE
104
+ .\}
105
+ .sp
106
+ He does lots of work\&. Checkin, checkin, checkin\&.
107
+ .sp
108
+ A sudden new brilliant idea happens\&.
109
+ .sp
110
+ .if n \{\
111
+ .RS 4
112
+ .\}
113
+ .nf
114
+ [save_the_planet]$ git new\-fb shave_the_bunnies
115
+ Creating shave_the_bunnies off of master
116
+ [shave_the_bunnies]$
117
+ .fi
118
+ .if n \{\
119
+ .RE
120
+ .\}
121
+ .sp
122
+ After creating a Sheering class and tests, he commits his changes\&.
123
+ .sp
124
+ .if n \{\
125
+ .RS 4
126
+ .\}
127
+ .nf
128
+ [shave_the_bunnies]$ git commit
129
+ [shave_the_bunnies]$ git to\-master
130
+ Rebasing shave_the_bunnies against master
131
+ Removing branch \*(Aqshave_the_bunnies\*(Aq
132
+ [_parking_]$
133
+ .fi
134
+ .if n \{\
135
+ .RE
136
+ .\}
137
+ .sp
138
+ Time to get back to work on "save_the_planet"\&.
139
+ .sp
140
+ .if n \{\
141
+ .RS 4
142
+ .\}
143
+ .nf
144
+ [_parking_]$ git checkout save_the_planet
145
+ [save_the_planet]$ git sync
146
+ Rebasing save_the_planet against master
147
+ [save_the_planet]$
148
+ .fi
149
+ .if n \{\
150
+ .RE
151
+ .\}
152
+ .sp
153
+ Do more work\&. Commit\&. Commit\&. Commit\&.
154
+ .sp
155
+ .if n \{\
156
+ .RS 4
157
+ .\}
158
+ .nf
159
+ [save_the_planet]$ git sync
160
+ Rebasing save_the_planet against master
161
+ [save_the_planet]$
162
+ .fi
163
+ .if n \{\
164
+ .RE
165
+ .\}
166
+ .sp
167
+ Liking to have a clean history, he squashes and edits the commits to hide the evidence of false starts and stupid ideas so that anyone who sees the code in the future will think he was simply a genius\&.
168
+ .sp
169
+ .if n \{\
170
+ .RS 4
171
+ .\}
172
+ .nf
173
+ [save_the_planet]$ git rebase \-i
174
+ Rebasing save_the_planet against master
175
+ [save_the_planet]$ git to\-master
176
+ Rebasing save_the_planet against master
177
+ Removing branch \*(Aqsave_the_planet\*(Aq
178
+ [_parking_]$
179
+ .fi
180
+ .if n \{\
181
+ .RE
182
+ .\}
183
+ .sp
184
+ Time to release to a grateful world\&.
185
+ .SS "WORKING WITH A TEAM"
186
+ .sp
187
+ John, Alice, Bill and Sally are working on "big_monies\&." Alice and John are pairing and need to start work on a new feature\&.
188
+ .sp
189
+ .if n \{\
190
+ .RS 4
191
+ .\}
192
+ .nf
193
+ john\-[a_branch]$ git new\-fb steal_underpants
194
+ Fetching the latest changes from the server
195
+ Creating steal_underpants off of origin/master
196
+ john\-[steal_underpants]$
197
+ .fi
198
+ .if n \{\
199
+ .RE
200
+ .\}
201
+ .sp
202
+ They do lots of work\&. Checkin, checkin, checkin\&. It has a lot of steps\&...
203
+ .sp
204
+ Meanwhile Bill has been working on his great idea:
205
+ .sp
206
+ .if n \{\
207
+ .RS 4
208
+ .\}
209
+ .nf
210
+ bill\-[some_branch]$ git new\-fb awesomo4000
211
+ Fetching the latest changes from the server
212
+ Creating awesomo4000 off of origin/master
213
+ bill\-[awesomo4000]$
214
+ .fi
215
+ .if n \{\
216
+ .RE
217
+ .\}
218
+ .sp
219
+ He creates his "Laaaaame" class and checks it in, with a pull request asking Sally to do a code review\&.
220
+ .sp
221
+ .if n \{\
222
+ .RS 4
223
+ .\}
224
+ .nf
225
+ bill\-[awesomo4000]$ git commit
226
+ bill\-[awesomo4000]$ git pull\-request "A\&.W\&.E\&.S\&.O\&.M\-0 4000 prototype" \e
227
+ \-d "@sally, can you make sure Butters won\*(Aqt recognize it?"
228
+ Pushing to \*(Aqawesomo4000\*(Aq on \*(Aqorigin\*(Aq\&.
229
+ Creating a pull request asking for \*(Aqawesomo4000\*(Aq to be merged into \*(Aqmaster\*(Aq on big_monies\&.
230
+ Created pull request at https://github\&.com/big_monies/pull/3454
231
+ bill\-[awesomo4000]$
232
+ .fi
233
+ .if n \{\
234
+ .RE
235
+ .\}
236
+ .sp
237
+ Sally sees the email\&. After looking at it in the web interface, she wants to test it\&.
238
+ .sp
239
+ .if n \{\
240
+ .RS 4
241
+ .\}
242
+ .nf
243
+ sally\-[other_branch]$ git pull\-request 3454
244
+ Getting #pr_number
245
+ Fetching the latest changes from the server
246
+ new branch: awesomo4000
247
+ Setting upstream/tracking for branch \*(Aqawesomo4000\*(Aq to \*(Aqorigin/master\*(Aq\&.
248
+ sally\-[awesomo4000]$ git sync
249
+ Fetching the latest changes from the server
250
+ Rebasing awesomo4000 against origin/master
251
+ Pushing to \*(Aqawesomo4000\*(Aq on \*(Aqorigin\*(Aq\&.
252
+ sally\-[awesomo4000]$
253
+ .fi
254
+ .if n \{\
255
+ .RE
256
+ .\}
257
+ .sp
258
+ After verifying that the tests still work and "it\(cqs all good" she promotes the code to integration\&.
259
+ .sp
260
+ .if n \{\
261
+ .RS 4
262
+ .\}
263
+ .nf
264
+ sally\-[awesomo4000]$ git to\-master
265
+ Fetching the latest changes from the server
266
+ Rebasing awesomo4000 against origin/master
267
+ Pushing to \*(Aqawesomo4000\*(Aq on \*(Aqorigin\*(Aq\&.
268
+ Removing branch remote \*(Aqawesomo4000\*(Aq
269
+ Removing branch local \*(Aqawesomo4000\*(Aq
270
+ Closing a pull request #3454 on origin\&.
271
+ sally\-[_parking_]$
272
+ .fi
273
+ .if n \{\
274
+ .RE
275
+ .\}
276
+ .sp
277
+ Over lunch Alice gets a brainstorm ("a duck and rubber hose!") and rushes off to her computer:
278
+ .sp
279
+ .if n \{\
280
+ .RS 4
281
+ .\}
282
+ .nf
283
+ alice\-[lens_cap]$ git sync steal_underpants
284
+ Fetching the latest changes from the server
285
+ Creating steal_underpants off of origin/steal_underpants
286
+ Setting upstream/tracking for branch \*(Aqsteal_underpants\*(Aq to \*(Aqorigin/master\*(Aq\&.
287
+ alice\-[steal_underpants]$
288
+ .fi
289
+ .if n \{\
290
+ .RE
291
+ .\}
292
+ .sp
293
+ She makes her changes, syncs back up with the server, and heads over to pair with John again\&.
294
+ .sp
295
+ .if n \{\
296
+ .RS 4
297
+ .\}
298
+ .nf
299
+ alice\-[steal_underpants]$ git commit
300
+ alice\-[steal_underpants]$ git sync
301
+ Fetching the latest changes from the server
302
+ Rebasing steal_underpants against origin/master
303
+ Pushing to \*(Aqsteal_underpants\*(Aq on \*(Aqorigin\*(Aq\&.
304
+ alice\-[steal_underpants]$
305
+ .fi
306
+ .if n \{\
307
+ .RE
308
+ .\}
309
+ .sp
310
+ John, meanwhile, had made some changes of his own\&.
311
+ .sp
312
+ .if n \{\
313
+ .RS 4
314
+ .\}
315
+ .nf
316
+ john\-[steal_underpants]$ git commit
317
+ john\-[steal_underpants]$ git sync
318
+ Fetching the latest changes from the server
319
+ Remote branch has changed
320
+ Rebasing steal_underpants against origin/steal_underpants
321
+ Rebasing steal_underpants against origin/master
322
+ Pushing to \*(Aqsteal_underpants\*(Aq on \*(Aqorigin\*(Aq\&.
323
+ john\-[steal_underpants]$
324
+ .fi
325
+ .if n \{\
326
+ .RE
327
+ .\}
328
+ .sp
329
+ At this point, his local branch has Alice\(cqs change as well as Bill and Sally\(cqs A\&.W\&.E\&.S\&.O\&.M\-O 4000 enhancements\&.
330
+ .sp
331
+ After confirming with Alice and Bill that everything looks good, he pushes his changes up for integration\&.
332
+ .sp
333
+ .if n \{\
334
+ .RS 4
335
+ .\}
336
+ .nf
337
+ john\-[steal_underpants]$ git to\-master
338
+ Fetching the latest changes from the server
339
+ Rebasing steal_underpants against origin/master
340
+ Pushing to \*(Aqsteal_underpants\*(Aq on \*(Aqorigin\*(Aq\&.
341
+ Removing remote branch \*(Aqsteal_underpants\*(Aq
342
+ Removing local branch \*(Aqsteal_underpants\*(Aq
343
+ [_parking_]$
344
+ .fi
345
+ .if n \{\
346
+ .RE
347
+ .\}
348
+ .sp
349
+ Profit!!
350
+ .SH "CONTROL FILES"
351
+ .PP
352
+ \fBgitprocess\-sync\-\fR*\fB\-\-\fR*
353
+ .RS 4
354
+ To help make the process simpler and more reliable,
355
+ \fIgit\-sync(1)\fR
356
+ will put a file in the "\fI\&.git\fR" directory that contains the SHA\-1 of the last successful sync to the server\&.
357
+ \fIgit\-to\-master(1)\fR
358
+ will remove the file as part of its normal "housekeeping\&."
359
+ .RE
360
+ .SH "SEE ALSO"
361
+ .sp
362
+ \fBgit\-sync\fR(1), \fBgit\-to\-master\fR(1), \fBgit\-new\-fb\fR(1), \fBgit\-pull\-request\fR(1)
363
+ .SH "BUGS"
364
+ .sp
365
+ Known bug list: https://github\&.com/jdigger/git\-process/issues?state=open
366
+ .SH "AUTHOR"
367
+ .sp
368
+ git\-process has been written primarily by Jim Moore\&.
369
+ .SH "RESOURCES"
370
+ .sp
371
+ Main web site: https://github\&.com/jdigger/git\-process
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: 27
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
- - 1
8
- - 1
9
- - 4
10
- version: 1.1.4
7
+ - 2
8
+ - 0
9
+ - 0
10
+ version: 2.0.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jim Moore
@@ -15,156 +15,88 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2013-05-02 00:00:00 Z
18
+ date: 2013-09-11 00:00:00 -06:00
19
+ default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
- name: octokit
22
+ name: git-sync
22
23
  prerelease: false
23
- type: :runtime
24
- version_requirements: &id001 !ruby/object:Gem::Requirement
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ~>
27
+ - - "="
28
28
  - !ruby/object:Gem::Version
29
- hash: 63
29
+ hash: 15
30
30
  segments:
31
- - 1
32
- - 24
33
- version: "1.24"
34
- requirement: *id001
35
- - !ruby/object:Gem::Dependency
36
- name: json
37
- prerelease: false
31
+ - 2
32
+ - 0
33
+ - 0
34
+ version: 2.0.0
38
35
  type: :runtime
39
- version_requirements: &id002 !ruby/object:Gem::Requirement
40
- none: false
41
- requirements:
42
- - - ~>
43
- - !ruby/object:Gem::Version
44
- hash: 13
45
- segments:
46
- - 1
47
- - 7
48
- - 3
49
- version: 1.7.3
50
- requirement: *id002
36
+ version_requirements: *id001
51
37
  - !ruby/object:Gem::Dependency
52
- name: trollop
38
+ name: git-new-fb
53
39
  prerelease: false
54
- type: :runtime
55
- version_requirements: &id003 !ruby/object:Gem::Requirement
40
+ requirement: &id002 !ruby/object:Gem::Requirement
56
41
  none: false
57
42
  requirements:
58
- - - ~>
43
+ - - "="
59
44
  - !ruby/object:Gem::Version
60
- hash: 83
45
+ hash: 15
61
46
  segments:
62
- - 1
63
- - 16
64
47
  - 2
65
- version: 1.16.2
66
- requirement: *id003
48
+ - 0
49
+ - 0
50
+ version: 2.0.0
51
+ type: :runtime
52
+ version_requirements: *id002
67
53
  - !ruby/object:Gem::Dependency
68
- name: highline
54
+ name: git-to-master
69
55
  prerelease: false
70
- type: :runtime
71
- version_requirements: &id004 !ruby/object:Gem::Requirement
56
+ requirement: &id003 !ruby/object:Gem::Requirement
72
57
  none: false
73
58
  requirements:
74
59
  - - "="
75
60
  - !ruby/object:Gem::Version
76
- hash: 21
61
+ hash: 15
77
62
  segments:
78
- - 1
79
- - 6
80
- - 13
81
- version: 1.6.13
82
- requirement: *id004
63
+ - 2
64
+ - 0
65
+ - 0
66
+ version: 2.0.0
67
+ type: :runtime
68
+ version_requirements: *id003
83
69
  - !ruby/object:Gem::Dependency
84
- name: addressable
70
+ name: git-pull-request
85
71
  prerelease: false
86
- type: :runtime
87
- version_requirements: &id005 !ruby/object:Gem::Requirement
72
+ requirement: &id004 !ruby/object:Gem::Requirement
88
73
  none: false
89
74
  requirements:
90
- - - ~>
75
+ - - "="
91
76
  - !ruby/object:Gem::Version
92
- hash: 11
77
+ hash: 15
93
78
  segments:
94
79
  - 2
95
- - 3
96
- - 4
97
- version: 2.3.4
98
- requirement: *id005
80
+ - 0
81
+ - 0
82
+ version: 2.0.0
83
+ type: :runtime
84
+ version_requirements: *id004
99
85
  description: A set of scripts to make working with git easier and more consistent
100
86
  email:
101
87
  - moore.jim@gmail.com
102
- executables:
103
- - git-new-fb
104
- - git-pull-request
105
- - git-sync
106
- - git-to-master
88
+ executables: []
89
+
107
90
  extensions: []
108
91
 
109
92
  extra_rdoc_files: []
110
93
 
111
94
  files:
112
- - CHANGELOG.md
113
- - Gemfile
114
- - Gemfile.lock
115
- - LICENSE
116
95
  - README.md
117
- - Rakefile
118
- - bin/git-new-fb
119
- - bin/git-pull-request
120
- - bin/git-sync
121
- - bin/git-to-master
122
- - git-process.gemspec
123
- - lib/git-process/abstract_error_builder.rb
124
- - lib/git-process/changed_file_helper.rb
125
- - lib/git-process/git_abstract_merge_error_builder.rb
126
- - lib/git-process/git_branch.rb
127
- - lib/git-process/git_branches.rb
128
- - lib/git-process/git_config.rb
129
- - lib/git-process/git_lib.rb
130
- - lib/git-process/git_logger.rb
131
- - lib/git-process/git_merge_error.rb
132
- - lib/git-process/git_process.rb
133
- - lib/git-process/git_process_error.rb
134
- - lib/git-process/git_process_options.rb
135
- - lib/git-process/git_rebase_error.rb
136
- - lib/git-process/git_remote.rb
137
- - lib/git-process/git_status.rb
138
- - lib/git-process/github_configuration.rb
139
- - lib/git-process/github_pull_request.rb
140
- - lib/git-process/new_fb.rb
141
- - lib/git-process/parked_changes_error.rb
142
- - lib/git-process/pull_request.rb
143
- - lib/git-process/pull_request_error.rb
144
- - lib/git-process/rebase_to_master.rb
145
- - lib/git-process/sync.rb
146
- - lib/git-process/uncommitted_changes_error.rb
147
- - lib/git-process/version.rb
148
- - spec/FileHelpers.rb
149
- - spec/GitRepoHelper.rb
150
- - spec/changed_file_helper_spec.rb
151
- - spec/git_abstract_merge_error_builder_spec.rb
152
- - spec/git_branch_spec.rb
153
- - spec/git_config_spec.rb
154
- - spec/git_lib_spec.rb
155
- - spec/git_logger_spec.rb
156
- - spec/git_process_spec.rb
157
- - spec/git_remote_spec.rb
158
- - spec/git_status_spec.rb
159
- - spec/github_configuration_spec.rb
160
- - spec/github_pull_request_spec.rb
161
- - spec/github_test_helper.rb
162
- - spec/new_fb_spec.rb
163
- - spec/pull_request_helper.rb
164
- - spec/pull_request_spec.rb
165
- - spec/rebase_to_master_spec.rb
166
- - spec/spec_helper.rb
167
- - spec/sync_spec.rb
96
+ - LICENSE
97
+ - CHANGELOG.md
98
+ - man/git-process.1
99
+ has_rdoc: true
168
100
  homepage: http://jdigger.github.com/git-process/
169
101
  licenses:
170
102
  - ASL2
@@ -196,29 +128,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
196
128
  requirements: []
197
129
 
198
130
  rubyforge_project:
199
- rubygems_version: 1.8.24
131
+ rubygems_version: 1.6.2
200
132
  signing_key:
201
133
  specification_version: 3
202
134
  summary: A set of scripts for a good git process
203
- test_files:
204
- - spec/FileHelpers.rb
205
- - spec/GitRepoHelper.rb
206
- - spec/changed_file_helper_spec.rb
207
- - spec/git_abstract_merge_error_builder_spec.rb
208
- - spec/git_branch_spec.rb
209
- - spec/git_config_spec.rb
210
- - spec/git_lib_spec.rb
211
- - spec/git_logger_spec.rb
212
- - spec/git_process_spec.rb
213
- - spec/git_remote_spec.rb
214
- - spec/git_status_spec.rb
215
- - spec/github_configuration_spec.rb
216
- - spec/github_pull_request_spec.rb
217
- - spec/github_test_helper.rb
218
- - spec/new_fb_spec.rb
219
- - spec/pull_request_helper.rb
220
- - spec/pull_request_spec.rb
221
- - spec/rebase_to_master_spec.rb
222
- - spec/spec_helper.rb
223
- - spec/sync_spec.rb
224
- has_rdoc:
135
+ test_files: []
136
+