git-scripts 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/feature +2 -0
  3. data/bin/hotfix +2 -0
  4. metadata +89 -89
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c450fce6d1d552b9d40db90084ef20c1baf60a02
4
- data.tar.gz: 4252e5dc127d48b9a23a53dd35f354605962906a
3
+ metadata.gz: 1f33294aba915f09ff4cc35bd2b1669e03e05792
4
+ data.tar.gz: b8a4d721cd0a92982e6e81eb903dace6febba9e3
5
5
  SHA512:
6
- metadata.gz: 0f9191b1908f9e5415db14291c3425f29079d7a8522f78fc693c54e63e90531e0602a9225a3a1ca852d6786f52109deeb645cdcdf9a815b6e0fc7edf1de7dd71
7
- data.tar.gz: 90f4a3206a325f5eeb21c251855f47d06bcf1b33a3a0d992b7cbd70c296bc662184fb46d585970fc60419e40a13981068d97e4f98330bada999685419e36ddfe
6
+ metadata.gz: 0acb8ecc2fe94381e12b634db8ecdbfee41ab76337319d90a31a2c8bb8b4efa17ab5696f983eeac743d01116720e4837cbd37b3573c052e3b43f93389b7cbcbf
7
+ data.tar.gz: 1eed04a999cd8afbd7145bde989a8a49eb6ce225e6d81f6ae9e316adf101ff47335b16474b23c2ac4517db796fe525471b6e01ec1cad78f5e7b37b2c3dcb930d
data/bin/feature CHANGED
@@ -48,6 +48,8 @@ when 'start'
48
48
 
49
49
  puts "Successfully created a new feature-branch: #{feature}"
50
50
 
51
+ Plugins.invoke :after_start, :feature, feature
52
+
51
53
  when 'status'
52
54
  current = Git::current_branch
53
55
  Git::run_safe(["git fetch"])
data/bin/hotfix CHANGED
@@ -40,6 +40,8 @@ when 'start'
40
40
  "git config branch.#{hotfix}.rebase true"
41
41
  ])
42
42
 
43
+ Plugins.invoke :after_start, :hotfix, hotfix
44
+
43
45
  when 'url'
44
46
  require_argument(:hotfix, :url, min=1, max=2)
45
47
  hotfix = ARGV[1] || Git::current_branch
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-scripts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Beardsley
@@ -11,48 +11,48 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2015-01-23 00:00:00.000000000 Z
14
+ date: 2015-04-07 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
18
18
  requirement: !ruby/object:Gem::Requirement
19
19
  requirements:
20
- - - ">="
20
+ - - '>='
21
21
  - !ruby/object:Gem::Version
22
22
  version: '0'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - ">="
27
+ - - '>='
28
28
  - !ruby/object:Gem::Version
29
29
  version: '0'
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: octokit
32
32
  requirement: !ruby/object:Gem::Requirement
33
33
  requirements:
34
- - - "~>"
34
+ - - ~>
35
35
  - !ruby/object:Gem::Version
36
36
  version: 1.22.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
- - - "~>"
41
+ - - ~>
42
42
  - !ruby/object:Gem::Version
43
43
  version: 1.22.0
44
44
  - !ruby/object:Gem::Dependency
45
45
  name: json
46
46
  requirement: !ruby/object:Gem::Requirement
47
47
  requirements:
48
- - - "~>"
48
+ - - ~>
49
49
  - !ruby/object:Gem::Version
50
50
  version: 1.8.0
51
51
  type: :runtime
52
52
  prerelease: false
53
53
  version_requirements: !ruby/object:Gem::Requirement
54
54
  requirements:
55
- - - "~>"
55
+ - - ~>
56
56
  - !ruby/object:Gem::Version
57
57
  version: 1.8.0
58
58
  - !ruby/object:Gem::Dependency
@@ -126,104 +126,104 @@ extra_rdoc_files:
126
126
  - README.md
127
127
  files:
128
128
  - COPYING
129
- - README.md
130
129
  - Rakefile
131
- - bin/feature
132
- - bin/hotfix
130
+ - README.md
133
131
  - completion/_feature
134
- - completion/_hotfix
135
132
  - completion/bash_completion.sh
133
+ - completion/_hotfix
134
+ - bin/hotfix
135
+ - bin/feature
136
136
  - lib/git.rb
137
- - lib/github.rb
138
- - lib/helpers.rb
139
- - lib/plugins.rb
140
137
  - lib/signal_handlers.rb
141
- - man/feature-clean.1
138
+ - lib/plugins.rb
139
+ - lib/helpers.rb
140
+ - lib/github.rb
141
+ - man/hotfix-switch.1.html
142
+ - man/hotfix-url.1.ronn
143
+ - man/hotfix-start.1.html
144
+ - man/hotfix-finish-issue.1.html
145
+ - man/feature-status.1.html
146
+ - man/feature-stashes.1.html
147
+ - man/hotfix-merge.1.ronn
148
+ - man/feature-github-test.1
149
+ - man/hotfix-switch.1.ronn
150
+ - man/hotfix-finish-issue.1
151
+ - man/feature.1.html
152
+ - man/feature-stashes.1.ronn
153
+ - man/hotfix-url.1.markdown
142
154
  - man/feature-clean.1.html
143
- - man/feature-clean.1.markdown
144
- - man/feature-clean.1.ronn
155
+ - man/hotfix.1
145
156
  - man/feature-finish-issue.1
146
157
  - man/feature-finish-issue.1.html
147
- - man/feature-finish-issue.1.markdown
148
- - man/feature-finish-issue.1.ronn
149
- - man/feature-finish.1
150
- - man/feature-finish.1.html
151
- - man/feature-finish.1.markdown
152
- - man/feature-finish.1.ronn
153
- - man/feature-github-test.1
154
- - man/feature-github-test.1.html
155
- - man/feature-github-test.1.markdown
156
- - man/feature-github-test.1.ronn
157
- - man/feature-list.1
158
- - man/feature-list.1.html
159
- - man/feature-list.1.markdown
160
- - man/feature-list.1.ronn
161
- - man/feature-merge.1
162
- - man/feature-merge.1.html
163
- - man/feature-merge.1.markdown
164
- - man/feature-merge.1.ronn
165
- - man/feature-prune.1
166
- - man/feature-prune.1.html
167
- - man/feature-prune.1.markdown
168
- - man/feature-prune.1.ronn
169
- - man/feature-start.1
170
- - man/feature-start.1.html
171
- - man/feature-start.1.markdown
172
- - man/feature-start.1.ronn
158
+ - man/hotfix-switch.1
173
159
  - man/feature-stashes.1
174
- - man/feature-stashes.1.html
160
+ - man/feature-start.1.markdown
161
+ - man/feature-start.1.html
162
+ - man/hotfix.1.html
163
+ - man/feature-list.1.markdown
164
+ - man/hotfix-finish.1.markdown
165
+ - man/feature-url.1.html
166
+ - man/hotfix-merge.1.html
175
167
  - man/feature-stashes.1.markdown
176
- - man/feature-stashes.1.ronn
177
- - man/feature-status.1
178
- - man/feature-status.1.html
179
- - man/feature-status.1.markdown
180
- - man/feature-status.1.ronn
181
- - man/feature-switch.1
168
+ - man/feature-merge.1.html
182
169
  - man/feature-switch.1.html
170
+ - man/hotfix-start.1
171
+ - man/index.html
172
+ - man/feature-prune.1.ronn
173
+ - man/feature-list.1.html
174
+ - man/hotfix-list.1.markdown
175
+ - man/feature-github-test.1.ronn
176
+ - man/feature-prune.1.markdown
177
+ - man/feature.1.ronn
178
+ - man/feature.1.markdown
179
+ - man/feature-url.1.ronn
183
180
  - man/feature-switch.1.markdown
184
- - man/feature-switch.1.ronn
181
+ - man/hotfix.1.markdown
182
+ - man/hotfix-merge.1.markdown
183
+ - man/hotfix.1.ronn
184
+ - man/hotfix-url.1.html
185
+ - man/feature-github-test.1.html
186
+ - man/hotfix-url.1
187
+ - man/hotfix-finish.1.ronn
188
+ - man/feature-merge.1.markdown
189
+ - man/feature-start.1.ronn
190
+ - man/hotfix-finish.1.html
191
+ - man/hotfix-merge.1
192
+ - man/index.txt
193
+ - man/feature-merge.1.ronn
194
+ - man/feature-list.1
185
195
  - man/feature-url.1
186
- - man/feature-url.1.html
187
196
  - man/feature-url.1.markdown
188
- - man/feature-url.1.ronn
197
+ - man/feature-finish.1
189
198
  - man/feature.1
190
- - man/feature.1.html
191
- - man/feature.1.markdown
192
- - man/feature.1.ronn
193
- - man/hotfix-finish-issue.1
194
- - man/hotfix-finish-issue.1.html
195
199
  - man/hotfix-finish-issue.1.markdown
196
- - man/hotfix-finish-issue.1.ronn
200
+ - man/hotfix-list.1.ronn
201
+ - man/feature-clean.1.ronn
202
+ - man/feature-clean.1.markdown
203
+ - man/feature-merge.1
197
204
  - man/hotfix-finish.1
198
- - man/hotfix-finish.1.html
199
- - man/hotfix-finish.1.markdown
200
- - man/hotfix-finish.1.ronn
201
- - man/hotfix-list.1
205
+ - man/feature-prune.1
206
+ - man/feature-finish-issue.1.ronn
207
+ - man/feature-status.1.ronn
208
+ - man/feature-start.1
202
209
  - man/hotfix-list.1.html
203
- - man/hotfix-list.1.markdown
204
- - man/hotfix-list.1.ronn
205
- - man/hotfix-merge.1
206
- - man/hotfix-merge.1.html
207
- - man/hotfix-merge.1.markdown
208
- - man/hotfix-merge.1.ronn
209
- - man/hotfix-start.1
210
- - man/hotfix-start.1.html
210
+ - man/feature-list.1.ronn
211
+ - man/feature-finish.1.ronn
212
+ - man/feature-status.1
213
+ - man/feature-finish.1.html
214
+ - man/hotfix-switch.1.markdown
215
+ - man/feature-status.1.markdown
216
+ - man/feature-clean.1
217
+ - man/feature-github-test.1.markdown
218
+ - man/hotfix-list.1
219
+ - man/feature-finish-issue.1.markdown
220
+ - man/feature-switch.1.ronn
221
+ - man/feature-switch.1
222
+ - man/hotfix-finish-issue.1.ronn
211
223
  - man/hotfix-start.1.markdown
212
224
  - man/hotfix-start.1.ronn
213
- - man/hotfix-switch.1
214
- - man/hotfix-switch.1.html
215
- - man/hotfix-switch.1.markdown
216
- - man/hotfix-switch.1.ronn
217
- - man/hotfix-url.1
218
- - man/hotfix-url.1.html
219
- - man/hotfix-url.1.markdown
220
- - man/hotfix-url.1.ronn
221
- - man/hotfix.1
222
- - man/hotfix.1.html
223
- - man/hotfix.1.markdown
224
- - man/hotfix.1.ronn
225
- - man/index.html
226
- - man/index.txt
225
+ - man/feature-finish.1.markdown
226
+ - man/feature-prune.1.html
227
227
  homepage: http://ifixit.github.com/git-scripts/
228
228
  licenses: []
229
229
  metadata: {}
@@ -233,17 +233,17 @@ require_paths:
233
233
  - lib
234
234
  required_ruby_version: !ruby/object:Gem::Requirement
235
235
  requirements:
236
- - - ">="
236
+ - - '>='
237
237
  - !ruby/object:Gem::Version
238
238
  version: '0'
239
239
  required_rubygems_version: !ruby/object:Gem::Requirement
240
240
  requirements:
241
- - - ">="
241
+ - - '>='
242
242
  - !ruby/object:Gem::Version
243
243
  version: '0'
244
244
  requirements: []
245
245
  rubyforge_project:
246
- rubygems_version: 2.2.2
246
+ rubygems_version: 2.1.11
247
247
  signing_key:
248
248
  specification_version: 4
249
249
  summary: User scripts for managing feature branches and hotfixes.