v2gpti 1.1.9 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/git-deliver +1 -1
- data/bin/git-finish +1 -1
- data/bin/git-newbug +1 -1
- data/bin/git-newfeature +1 -1
- data/bin/git-qa +1 -1
- data/bin/git-release +1 -1
- data/bin/git-report +1 -1
- data/bin/git-start +1 -1
- data/bin/git-uat +1 -1
- data/config_template +16 -0
- data/lib/git-pivotal-tracker-integration/command/base.rb +235 -322
- data/lib/git-pivotal-tracker-integration/command/configuration.rb +183 -109
- data/lib/git-pivotal-tracker-integration/command/deliver.rb +145 -200
- data/lib/git-pivotal-tracker-integration/command/finish.rb +70 -63
- data/lib/git-pivotal-tracker-integration/command/newbug.rb +36 -39
- data/lib/git-pivotal-tracker-integration/command/newfeature.rb +43 -42
- data/lib/git-pivotal-tracker-integration/command/release.rb +171 -203
- data/lib/git-pivotal-tracker-integration/command/report.rb +33 -36
- data/lib/git-pivotal-tracker-integration/command/start.rb +74 -78
- data/lib/git-pivotal-tracker-integration/util/git.rb +202 -204
- data/lib/git-pivotal-tracker-integration/util/shell.rb +19 -16
- data/lib/git-pivotal-tracker-integration/util/story.rb +155 -177
- data/lib/git-pivotal-tracker-integration/version-update/gradle.rb +44 -40
- data/lib/git-pivotal-tracker-integration.rb +44 -0
- data/spec/git-pivotal-tracker-integration/command/configuration_spec.rb +1 -2
- data/spec/git-pivotal-tracker-integration/command/finish_spec.rb +1 -1
- data/spec/git-pivotal-tracker-integration/command/release_spec.rb +1 -1
- data/spec/git-pivotal-tracker-integration/command/start_spec.rb +1 -1
- data/spec/git-pivotal-tracker-integration/util/story_spec.rb +21 -32
- data/tracker_api/lib/tracker_api/client.rb +241 -0
- data/tracker_api/lib/tracker_api/endpoints/activity.rb +38 -0
- data/tracker_api/lib/tracker_api/endpoints/comments.rb +27 -0
- data/tracker_api/lib/tracker_api/endpoints/epic.rb +17 -0
- data/tracker_api/lib/tracker_api/endpoints/epics.rb +20 -0
- data/tracker_api/lib/tracker_api/endpoints/file_attachment.rb +18 -0
- data/tracker_api/lib/tracker_api/endpoints/iterations.rb +20 -0
- data/tracker_api/lib/tracker_api/endpoints/me.rb +17 -0
- data/tracker_api/lib/tracker_api/endpoints/memberships.rb +20 -0
- data/tracker_api/lib/tracker_api/endpoints/notifications.rb +20 -0
- data/tracker_api/lib/tracker_api/endpoints/project.rb +17 -0
- data/tracker_api/lib/tracker_api/endpoints/projects.rb +18 -0
- data/tracker_api/lib/tracker_api/endpoints/stories.rb +20 -0
- data/tracker_api/lib/tracker_api/endpoints/story.rb +37 -0
- data/tracker_api/lib/tracker_api/endpoints/tasks.rb +20 -0
- data/tracker_api/lib/tracker_api/error.rb +18 -0
- data/tracker_api/lib/tracker_api/logger.rb +31 -0
- data/tracker_api/lib/tracker_api/resources/account.rb +18 -0
- data/tracker_api/lib/tracker_api/resources/activity.rb +24 -0
- data/tracker_api/lib/tracker_api/resources/base.rb +71 -0
- data/tracker_api/lib/tracker_api/resources/change.rb +15 -0
- data/tracker_api/lib/tracker_api/resources/comment.rb +20 -0
- data/tracker_api/lib/tracker_api/resources/epic.rb +17 -0
- data/tracker_api/lib/tracker_api/resources/file_attachment.rb +23 -0
- data/tracker_api/lib/tracker_api/resources/iteration.rb +24 -0
- data/tracker_api/lib/tracker_api/resources/label.rb +14 -0
- data/tracker_api/lib/tracker_api/resources/me.rb +21 -0
- data/tracker_api/lib/tracker_api/resources/membership_summary.rb +15 -0
- data/tracker_api/lib/tracker_api/resources/notification.rb +26 -0
- data/tracker_api/lib/tracker_api/resources/person.rb +14 -0
- data/tracker_api/lib/tracker_api/resources/primary_resource.rb +13 -0
- data/tracker_api/lib/tracker_api/resources/project.rb +131 -0
- data/tracker_api/lib/tracker_api/resources/project_membership.rb +16 -0
- data/tracker_api/lib/tracker_api/resources/story.rb +102 -0
- data/tracker_api/lib/tracker_api/resources/task.rb +16 -0
- data/tracker_api/lib/tracker_api/resources/time_zone.rb +13 -0
- data/tracker_api/lib/tracker_api/version.rb +3 -0
- data/tracker_api/lib/tracker_api.rb +60 -0
- metadata +202 -53
- data/lib/git-pivotal-tracker-integration/command/command.rb +0 -20
- data/lib/git-pivotal-tracker-integration/util/util.rb +0 -20
- data/lib/git-pivotal-tracker-integration/version-update/version_update.rb +0 -20
- data/lib/git_pivotal_tracker_integration.rb +0 -18
@@ -0,0 +1,60 @@
|
|
1
|
+
require 'tracker_api/version'
|
2
|
+
|
3
|
+
# dependencies
|
4
|
+
require 'virtus'
|
5
|
+
require 'faraday'
|
6
|
+
require 'faraday_middleware'
|
7
|
+
|
8
|
+
# stdlib
|
9
|
+
require 'addressable/uri'
|
10
|
+
require 'forwardable'
|
11
|
+
require 'logger'
|
12
|
+
|
13
|
+
module TrackerApi
|
14
|
+
autoload :Error, 'tracker_api/error'
|
15
|
+
autoload :Client, 'tracker_api/client'
|
16
|
+
autoload :Logger, 'tracker_api/logger'
|
17
|
+
|
18
|
+
module Errors
|
19
|
+
class UnexpectedData < StandardError; end
|
20
|
+
end
|
21
|
+
|
22
|
+
module Endpoints
|
23
|
+
autoload :Activity, 'tracker_api/endpoints/activity'
|
24
|
+
autoload :Epic, 'tracker_api/endpoints/epic'
|
25
|
+
autoload :Epics, 'tracker_api/endpoints/epics'
|
26
|
+
autoload :Iterations, 'tracker_api/endpoints/iterations'
|
27
|
+
autoload :Me, 'tracker_api/endpoints/me'
|
28
|
+
autoload :Memberships, 'tracker_api/endpoints/memberships'
|
29
|
+
autoload :Notifications, 'tracker_api/endpoints/notifications'
|
30
|
+
autoload :Project, 'tracker_api/endpoints/project'
|
31
|
+
autoload :Projects, 'tracker_api/endpoints/projects'
|
32
|
+
autoload :Stories, 'tracker_api/endpoints/stories'
|
33
|
+
autoload :Story, 'tracker_api/endpoints/story'
|
34
|
+
autoload :Tasks, 'tracker_api/endpoints/tasks'
|
35
|
+
autoload :Comments, 'tracker_api/endpoints/comments'
|
36
|
+
autoload :FileAttachment, 'tracker_api/endpoints/file_attachment'
|
37
|
+
end
|
38
|
+
|
39
|
+
module Resources
|
40
|
+
autoload :Base, 'tracker_api/resources/base'
|
41
|
+
autoload :Activity, 'tracker_api/resources/activity'
|
42
|
+
autoload :Account, 'tracker_api/resources/account'
|
43
|
+
autoload :Change, 'tracker_api/resources/change'
|
44
|
+
autoload :Epic, 'tracker_api/resources/epic'
|
45
|
+
autoload :Iteration, 'tracker_api/resources/iteration'
|
46
|
+
autoload :Me, 'tracker_api/resources/me'
|
47
|
+
autoload :MembershipSummary, 'tracker_api/resources/membership_summary'
|
48
|
+
autoload :Notification, 'tracker_api/resources/notification'
|
49
|
+
autoload :Label, 'tracker_api/resources/label'
|
50
|
+
autoload :Person, 'tracker_api/resources/person'
|
51
|
+
autoload :PrimaryResource, 'tracker_api/resources/primary_resource'
|
52
|
+
autoload :Project, 'tracker_api/resources/project'
|
53
|
+
autoload :ProjectMembership, 'tracker_api/resources/project_membership'
|
54
|
+
autoload :Story, 'tracker_api/resources/story'
|
55
|
+
autoload :Task, 'tracker_api/resources/task'
|
56
|
+
autoload :TimeZone, 'tracker_api/resources/time_zone'
|
57
|
+
autoload :Comment, 'tracker_api/resources/comment'
|
58
|
+
autoload :FileAttachment, 'tracker_api/resources/file_attachment'
|
59
|
+
end
|
60
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: v2gpti
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Wolski
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2015-
|
13
|
+
date: 2015-04-28 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: highline
|
@@ -26,34 +26,20 @@ dependencies:
|
|
26
26
|
- - ~>
|
27
27
|
- !ruby/object:Gem::Version
|
28
28
|
version: '1.6'
|
29
|
-
- !ruby/object:Gem::Dependency
|
30
|
-
name: pivotal-tracker
|
31
|
-
requirement: !ruby/object:Gem::Requirement
|
32
|
-
requirements:
|
33
|
-
- - ~>
|
34
|
-
- !ruby/object:Gem::Version
|
35
|
-
version: '0.5'
|
36
|
-
type: :runtime
|
37
|
-
prerelease: false
|
38
|
-
version_requirements: !ruby/object:Gem::Requirement
|
39
|
-
requirements:
|
40
|
-
- - ~>
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: '0.5'
|
43
29
|
- !ruby/object:Gem::Dependency
|
44
30
|
name: parseconfig
|
45
31
|
requirement: !ruby/object:Gem::Requirement
|
46
32
|
requirements:
|
47
33
|
- - ~>
|
48
34
|
- !ruby/object:Gem::Version
|
49
|
-
version:
|
35
|
+
version: 1.0.6
|
50
36
|
type: :runtime
|
51
37
|
prerelease: false
|
52
38
|
version_requirements: !ruby/object:Gem::Requirement
|
53
39
|
requirements:
|
54
40
|
- - ~>
|
55
41
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
42
|
+
version: 1.0.6
|
57
43
|
- !ruby/object:Gem::Dependency
|
58
44
|
name: faraday
|
59
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -138,6 +124,90 @@ dependencies:
|
|
138
124
|
- - ~>
|
139
125
|
- !ruby/object:Gem::Version
|
140
126
|
version: 0.9.6
|
127
|
+
- !ruby/object:Gem::Dependency
|
128
|
+
name: addressable
|
129
|
+
requirement: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - '>='
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0'
|
134
|
+
type: :runtime
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - '>='
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
- !ruby/object:Gem::Dependency
|
142
|
+
name: virtus
|
143
|
+
requirement: !ruby/object:Gem::Requirement
|
144
|
+
requirements:
|
145
|
+
- - '>='
|
146
|
+
- !ruby/object:Gem::Version
|
147
|
+
version: '0'
|
148
|
+
type: :runtime
|
149
|
+
prerelease: false
|
150
|
+
version_requirements: !ruby/object:Gem::Requirement
|
151
|
+
requirements:
|
152
|
+
- - '>='
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: '0'
|
155
|
+
- !ruby/object:Gem::Dependency
|
156
|
+
name: faraday_middleware
|
157
|
+
requirement: !ruby/object:Gem::Requirement
|
158
|
+
requirements:
|
159
|
+
- - '>='
|
160
|
+
- !ruby/object:Gem::Version
|
161
|
+
version: '0'
|
162
|
+
type: :runtime
|
163
|
+
prerelease: false
|
164
|
+
version_requirements: !ruby/object:Gem::Requirement
|
165
|
+
requirements:
|
166
|
+
- - '>='
|
167
|
+
- !ruby/object:Gem::Version
|
168
|
+
version: '0'
|
169
|
+
- !ruby/object:Gem::Dependency
|
170
|
+
name: excon
|
171
|
+
requirement: !ruby/object:Gem::Requirement
|
172
|
+
requirements:
|
173
|
+
- - '>='
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: '0'
|
176
|
+
type: :runtime
|
177
|
+
prerelease: false
|
178
|
+
version_requirements: !ruby/object:Gem::Requirement
|
179
|
+
requirements:
|
180
|
+
- - '>='
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: '0'
|
183
|
+
- !ruby/object:Gem::Dependency
|
184
|
+
name: activesupport
|
185
|
+
requirement: !ruby/object:Gem::Requirement
|
186
|
+
requirements:
|
187
|
+
- - ~>
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: 4.2.0
|
190
|
+
type: :runtime
|
191
|
+
prerelease: false
|
192
|
+
version_requirements: !ruby/object:Gem::Requirement
|
193
|
+
requirements:
|
194
|
+
- - ~>
|
195
|
+
- !ruby/object:Gem::Version
|
196
|
+
version: 4.2.0
|
197
|
+
- !ruby/object:Gem::Dependency
|
198
|
+
name: activemodel
|
199
|
+
requirement: !ruby/object:Gem::Requirement
|
200
|
+
requirements:
|
201
|
+
- - '>='
|
202
|
+
- !ruby/object:Gem::Version
|
203
|
+
version: '0'
|
204
|
+
type: :runtime
|
205
|
+
prerelease: false
|
206
|
+
version_requirements: !ruby/object:Gem::Requirement
|
207
|
+
requirements:
|
208
|
+
- - '>='
|
209
|
+
- !ruby/object:Gem::Version
|
210
|
+
version: '0'
|
141
211
|
- !ruby/object:Gem::Dependency
|
142
212
|
name: bundler
|
143
213
|
requirement: !ruby/object:Gem::Requirement
|
@@ -222,63 +292,141 @@ dependencies:
|
|
222
292
|
- - ~>
|
223
293
|
- !ruby/object:Gem::Version
|
224
294
|
version: '0.8'
|
295
|
+
- !ruby/object:Gem::Dependency
|
296
|
+
name: minitest
|
297
|
+
requirement: !ruby/object:Gem::Requirement
|
298
|
+
requirements:
|
299
|
+
- - '>='
|
300
|
+
- !ruby/object:Gem::Version
|
301
|
+
version: '0'
|
302
|
+
type: :development
|
303
|
+
prerelease: false
|
304
|
+
version_requirements: !ruby/object:Gem::Requirement
|
305
|
+
requirements:
|
306
|
+
- - '>='
|
307
|
+
- !ruby/object:Gem::Version
|
308
|
+
version: '0'
|
309
|
+
- !ruby/object:Gem::Dependency
|
310
|
+
name: vcr
|
311
|
+
requirement: !ruby/object:Gem::Requirement
|
312
|
+
requirements:
|
313
|
+
- - '>='
|
314
|
+
- !ruby/object:Gem::Version
|
315
|
+
version: '0'
|
316
|
+
type: :development
|
317
|
+
prerelease: false
|
318
|
+
version_requirements: !ruby/object:Gem::Requirement
|
319
|
+
requirements:
|
320
|
+
- - '>='
|
321
|
+
- !ruby/object:Gem::Version
|
322
|
+
version: '0'
|
323
|
+
- !ruby/object:Gem::Dependency
|
324
|
+
name: multi_json
|
325
|
+
requirement: !ruby/object:Gem::Requirement
|
326
|
+
requirements:
|
327
|
+
- - '>='
|
328
|
+
- !ruby/object:Gem::Version
|
329
|
+
version: '0'
|
330
|
+
type: :development
|
331
|
+
prerelease: false
|
332
|
+
version_requirements: !ruby/object:Gem::Requirement
|
333
|
+
requirements:
|
334
|
+
- - '>='
|
335
|
+
- !ruby/object:Gem::Version
|
336
|
+
version: '0'
|
225
337
|
description: Provides a set of additional Git commands to help developers when working
|
226
338
|
with Pivotal Tracker
|
227
339
|
email: jeff@xxxxxxxxx.com
|
228
340
|
executables:
|
229
|
-
- git-deliver
|
230
|
-
- git-finish
|
231
341
|
- git-newbug
|
232
|
-
- git-
|
342
|
+
- git-deliver
|
343
|
+
- git-uat
|
233
344
|
- git-qa
|
234
|
-
- git-release
|
235
345
|
- git-report
|
346
|
+
- git-release
|
347
|
+
- git-finish
|
236
348
|
- git-start
|
237
|
-
- git-
|
349
|
+
- git-newfeature
|
238
350
|
extensions: []
|
239
351
|
extra_rdoc_files: []
|
240
352
|
files:
|
241
353
|
- LICENSE
|
242
354
|
- NOTICE
|
243
355
|
- README.md
|
356
|
+
- config_template
|
357
|
+
- lib/git-pivotal-tracker-integration.rb
|
358
|
+
- lib/git-pivotal-tracker-integration/version-update/gradle.rb
|
359
|
+
- lib/git-pivotal-tracker-integration/util/story.rb
|
360
|
+
- lib/git-pivotal-tracker-integration/util/togglV8.rb
|
361
|
+
- lib/git-pivotal-tracker-integration/util/git.rb
|
362
|
+
- lib/git-pivotal-tracker-integration/util/shell.rb
|
363
|
+
- lib/git-pivotal-tracker-integration/command/newfeature.rb
|
244
364
|
- lib/git-pivotal-tracker-integration/command/base.rb
|
245
|
-
- lib/git-pivotal-tracker-integration/command/command.rb
|
246
|
-
- lib/git-pivotal-tracker-integration/command/configuration.rb
|
247
|
-
- lib/git-pivotal-tracker-integration/command/deliver.rb
|
248
365
|
- lib/git-pivotal-tracker-integration/command/finish.rb
|
366
|
+
- lib/git-pivotal-tracker-integration/command/start.rb
|
367
|
+
- lib/git-pivotal-tracker-integration/command/deliver.rb
|
249
368
|
- lib/git-pivotal-tracker-integration/command/newbug.rb
|
250
|
-
- lib/git-pivotal-tracker-integration/command/
|
369
|
+
- lib/git-pivotal-tracker-integration/command/configuration.rb
|
251
370
|
- lib/git-pivotal-tracker-integration/command/release.rb
|
252
371
|
- lib/git-pivotal-tracker-integration/command/report.rb
|
253
|
-
- lib/git-pivotal-tracker-integration/command/start.rb
|
254
|
-
- lib/git-pivotal-tracker-integration/util/git.rb
|
255
|
-
- lib/git-pivotal-tracker-integration/util/shell.rb
|
256
|
-
- lib/git-pivotal-tracker-integration/util/story.rb
|
257
|
-
- lib/git-pivotal-tracker-integration/util/togglV8.rb
|
258
|
-
- lib/git-pivotal-tracker-integration/util/util.rb
|
259
|
-
- lib/git-pivotal-tracker-integration/version-update/gradle.rb
|
260
|
-
- lib/git-pivotal-tracker-integration/version-update/version_update.rb
|
261
|
-
- lib/git_pivotal_tracker_integration.rb
|
262
372
|
- lib/git-pivotal-tracker-integration/command/prepare-commit-msg-win.sh
|
263
373
|
- lib/git-pivotal-tracker-integration/command/prepare-commit-msg.sh
|
264
|
-
- bin/git-deliver
|
265
|
-
- bin/git-finish
|
266
374
|
- bin/git-newbug
|
267
|
-
- bin/git-
|
375
|
+
- bin/git-deliver
|
376
|
+
- bin/git-uat
|
268
377
|
- bin/git-qa
|
269
|
-
- bin/git-release
|
270
378
|
- bin/git-report
|
379
|
+
- bin/git-release
|
380
|
+
- bin/git-finish
|
271
381
|
- bin/git-start
|
272
|
-
- bin/git-
|
273
|
-
-
|
382
|
+
- bin/git-newfeature
|
383
|
+
- tracker_api/lib/tracker_api.rb
|
384
|
+
- tracker_api/lib/tracker_api/resources/me.rb
|
385
|
+
- tracker_api/lib/tracker_api/resources/task.rb
|
386
|
+
- tracker_api/lib/tracker_api/resources/project_membership.rb
|
387
|
+
- tracker_api/lib/tracker_api/resources/story.rb
|
388
|
+
- tracker_api/lib/tracker_api/resources/base.rb
|
389
|
+
- tracker_api/lib/tracker_api/resources/change.rb
|
390
|
+
- tracker_api/lib/tracker_api/resources/notification.rb
|
391
|
+
- tracker_api/lib/tracker_api/resources/project.rb
|
392
|
+
- tracker_api/lib/tracker_api/resources/file_attachment.rb
|
393
|
+
- tracker_api/lib/tracker_api/resources/iteration.rb
|
394
|
+
- tracker_api/lib/tracker_api/resources/epic.rb
|
395
|
+
- tracker_api/lib/tracker_api/resources/primary_resource.rb
|
396
|
+
- tracker_api/lib/tracker_api/resources/account.rb
|
397
|
+
- tracker_api/lib/tracker_api/resources/time_zone.rb
|
398
|
+
- tracker_api/lib/tracker_api/resources/comment.rb
|
399
|
+
- tracker_api/lib/tracker_api/resources/membership_summary.rb
|
400
|
+
- tracker_api/lib/tracker_api/resources/label.rb
|
401
|
+
- tracker_api/lib/tracker_api/resources/person.rb
|
402
|
+
- tracker_api/lib/tracker_api/resources/activity.rb
|
403
|
+
- tracker_api/lib/tracker_api/error.rb
|
404
|
+
- tracker_api/lib/tracker_api/logger.rb
|
405
|
+
- tracker_api/lib/tracker_api/client.rb
|
406
|
+
- tracker_api/lib/tracker_api/endpoints/projects.rb
|
407
|
+
- tracker_api/lib/tracker_api/endpoints/me.rb
|
408
|
+
- tracker_api/lib/tracker_api/endpoints/story.rb
|
409
|
+
- tracker_api/lib/tracker_api/endpoints/iterations.rb
|
410
|
+
- tracker_api/lib/tracker_api/endpoints/project.rb
|
411
|
+
- tracker_api/lib/tracker_api/endpoints/memberships.rb
|
412
|
+
- tracker_api/lib/tracker_api/endpoints/file_attachment.rb
|
413
|
+
- tracker_api/lib/tracker_api/endpoints/tasks.rb
|
414
|
+
- tracker_api/lib/tracker_api/endpoints/epic.rb
|
415
|
+
- tracker_api/lib/tracker_api/endpoints/epics.rb
|
416
|
+
- tracker_api/lib/tracker_api/endpoints/stories.rb
|
417
|
+
- tracker_api/lib/tracker_api/endpoints/notifications.rb
|
418
|
+
- tracker_api/lib/tracker_api/endpoints/comments.rb
|
419
|
+
- tracker_api/lib/tracker_api/endpoints/activity.rb
|
420
|
+
- tracker_api/lib/tracker_api/version.rb
|
421
|
+
- spec/git-pivotal-tracker-integration/version-update/gradle_spec.rb
|
422
|
+
- spec/git-pivotal-tracker-integration/util/shell_spec.rb
|
423
|
+
- spec/git-pivotal-tracker-integration/util/git_spec.rb
|
424
|
+
- spec/git-pivotal-tracker-integration/util/story_spec.rb
|
274
425
|
- spec/git-pivotal-tracker-integration/command/configuration_spec.rb
|
275
|
-
- spec/git-pivotal-tracker-integration/command/finish_spec.rb
|
276
426
|
- spec/git-pivotal-tracker-integration/command/release_spec.rb
|
427
|
+
- spec/git-pivotal-tracker-integration/command/finish_spec.rb
|
428
|
+
- spec/git-pivotal-tracker-integration/command/base_spec.rb
|
277
429
|
- spec/git-pivotal-tracker-integration/command/start_spec.rb
|
278
|
-
- spec/git-pivotal-tracker-integration/util/git_spec.rb
|
279
|
-
- spec/git-pivotal-tracker-integration/util/shell_spec.rb
|
280
|
-
- spec/git-pivotal-tracker-integration/util/story_spec.rb
|
281
|
-
- spec/git-pivotal-tracker-integration/version-update/gradle_spec.rb
|
282
430
|
homepage: https://github.com/v2dev/V2GPTI
|
283
431
|
licenses:
|
284
432
|
- Apache-2.0
|
@@ -304,12 +452,13 @@ signing_key:
|
|
304
452
|
specification_version: 4
|
305
453
|
summary: Git commands for integration with Pivotal Tracker
|
306
454
|
test_files:
|
307
|
-
- spec/git-pivotal-tracker-integration/
|
455
|
+
- spec/git-pivotal-tracker-integration/version-update/gradle_spec.rb
|
456
|
+
- spec/git-pivotal-tracker-integration/util/shell_spec.rb
|
457
|
+
- spec/git-pivotal-tracker-integration/util/git_spec.rb
|
458
|
+
- spec/git-pivotal-tracker-integration/util/story_spec.rb
|
308
459
|
- spec/git-pivotal-tracker-integration/command/configuration_spec.rb
|
309
|
-
- spec/git-pivotal-tracker-integration/command/finish_spec.rb
|
310
460
|
- spec/git-pivotal-tracker-integration/command/release_spec.rb
|
461
|
+
- spec/git-pivotal-tracker-integration/command/finish_spec.rb
|
462
|
+
- spec/git-pivotal-tracker-integration/command/base_spec.rb
|
311
463
|
- spec/git-pivotal-tracker-integration/command/start_spec.rb
|
312
|
-
|
313
|
-
- spec/git-pivotal-tracker-integration/util/shell_spec.rb
|
314
|
-
- spec/git-pivotal-tracker-integration/util/story_spec.rb
|
315
|
-
- spec/git-pivotal-tracker-integration/version-update/gradle_spec.rb
|
464
|
+
has_rdoc:
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# Git Pivotal Tracker Integration
|
2
|
-
# Copyright (c) 2013 the original author or authors.
|
3
|
-
#
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
# you may not use this file except in compliance with the License.
|
6
|
-
# You may obtain a copy of the License at
|
7
|
-
#
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
#
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
# See the License for the specific language governing permissions and
|
14
|
-
# limitations under the License.
|
15
|
-
|
16
|
-
require 'git_pivotal_tracker_integration'
|
17
|
-
|
18
|
-
# A module encapsulating the commands for the project
|
19
|
-
module GitPivotalTrackerIntegration::Command
|
20
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# Git Pivotal Tracker Integration
|
2
|
-
# Copyright (c) 2013 the original author or authors.
|
3
|
-
#
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
# you may not use this file except in compliance with the License.
|
6
|
-
# You may obtain a copy of the License at
|
7
|
-
#
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
#
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
# See the License for the specific language governing permissions and
|
14
|
-
# limitations under the License.
|
15
|
-
|
16
|
-
require 'git_pivotal_tracker_integration'
|
17
|
-
|
18
|
-
# A module encapsulating utilities for the project
|
19
|
-
module GitPivotalTrackerIntegration::Util
|
20
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# Git Pivotal Tracker Integration
|
2
|
-
# Copyright (c) 2013 the original author or authors.
|
3
|
-
#
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
# you may not use this file except in compliance with the License.
|
6
|
-
# You may obtain a copy of the License at
|
7
|
-
#
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
#
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
# See the License for the specific language governing permissions and
|
14
|
-
# limitations under the License.
|
15
|
-
|
16
|
-
require 'git_pivotal_tracker_integration'
|
17
|
-
|
18
|
-
# A module encapsulating version update implementations
|
19
|
-
module GitPivotalTrackerIntegration::VersionUpdate
|
20
|
-
end
|
@@ -1,18 +0,0 @@
|
|
1
|
-
# Git Pivotal Tracker Integration
|
2
|
-
# Copyright (c) 2013 the original author or authors.
|
3
|
-
#
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
# you may not use this file except in compliance with the License.
|
6
|
-
# You may obtain a copy of the License at
|
7
|
-
#
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
#
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
# See the License for the specific language governing permissions and
|
14
|
-
# limitations under the License.
|
15
|
-
|
16
|
-
# The root module for the project
|
17
|
-
module GitPivotalTrackerIntegration
|
18
|
-
end
|