git-pivotal-tracker-centro 1.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/.rspec +2 -0
- data/.rvmrc +1 -0
- data/.travis.yml +3 -0
- data/CHANGELOG +54 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +82 -0
- data/LICENSE +21 -0
- data/Rakefile +49 -0
- data/VERSION +1 -0
- data/bin/git-finish +7 -0
- data/bin/git-info +7 -0
- data/bin/git-start +8 -0
- data/features/finish.feature +88 -0
- data/features/info.feature +99 -0
- data/features/start.feature +113 -0
- data/features/step_definitions/steps.rb +119 -0
- data/features/support/dsl/assertions.rb +11 -0
- data/features/support/dsl/data.rb +11 -0
- data/features/support/dsl/pivotal.rb +77 -0
- data/features/support/env.rb +6 -0
- data/features/support/git-pivotal.rb +68 -0
- data/features/test_repo/origin.git/COMMIT_EDITMSG +1 -0
- data/features/test_repo/origin.git/HEAD +1 -0
- data/features/test_repo/origin.git/config +8 -0
- data/features/test_repo/origin.git/description +1 -0
- data/features/test_repo/origin.git/hooks/applypatch-msg.sample +15 -0
- data/features/test_repo/origin.git/hooks/commit-msg.sample +24 -0
- data/features/test_repo/origin.git/hooks/post-commit.sample +8 -0
- data/features/test_repo/origin.git/hooks/post-receive.sample +15 -0
- data/features/test_repo/origin.git/hooks/post-update.sample +8 -0
- data/features/test_repo/origin.git/hooks/pre-applypatch.sample +14 -0
- data/features/test_repo/origin.git/hooks/pre-commit.sample +46 -0
- data/features/test_repo/origin.git/hooks/pre-rebase.sample +169 -0
- data/features/test_repo/origin.git/hooks/prepare-commit-msg.sample +36 -0
- data/features/test_repo/origin.git/hooks/update.sample +128 -0
- data/features/test_repo/origin.git/index +0 -0
- data/features/test_repo/origin.git/info/exclude +6 -0
- data/features/test_repo/origin.git/logs/HEAD +1 -0
- data/features/test_repo/origin.git/logs/refs/heads/master +1 -0
- data/features/test_repo/origin.git/objects/0c/6f7b1384910d1a2f137590095f008a06c7e00c +0 -0
- data/features/test_repo/origin.git/objects/10/ecf2b7ce989f01f3f7266e712b48d9275f2635 +0 -0
- data/features/test_repo/origin.git/objects/a5/71d56305df09fb060f6ccb730b46080d305beb +0 -0
- data/features/test_repo/origin.git/refs/heads/master +1 -0
- data/features/test_repo/readme +1 -0
- data/git-pivotal-tracker-centro.gemspec +29 -0
- data/lib/commands/base.rb +120 -0
- data/lib/commands/bug.rb +19 -0
- data/lib/commands/card.rb +32 -0
- data/lib/commands/chore.rb +19 -0
- data/lib/commands/feature.rb +19 -0
- data/lib/commands/finish.rb +67 -0
- data/lib/commands/info.rb +58 -0
- data/lib/commands/map.rb +10 -0
- data/lib/commands/pick.rb +94 -0
- data/lib/commands/start.rb +39 -0
- data/lib/git-pivotal-tracker.rb +11 -0
- data/readme.markdown +106 -0
- data/spec/commands/base_spec.rb +137 -0
- data/spec/commands/bug_spec.rb +24 -0
- data/spec/commands/chore_spec.rb +24 -0
- data/spec/commands/feature_spec.rb +24 -0
- data/spec/commands/finish_spec.rb +134 -0
- data/spec/commands/map_spec.rb +14 -0
- data/spec/commands/start_spec.rb +28 -0
- data/spec/factories.rb +13 -0
- data/spec/factory.rb +26 -0
- data/spec/spec_helper.rb +24 -0
- metadata +291 -0
metadata
ADDED
@@ -0,0 +1,291 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: git-pivotal-tracker-centro
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0.rc1
|
5
|
+
prerelease: 6
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Zach Dennis
|
9
|
+
- Jeff Tucker
|
10
|
+
- Sam Stokes
|
11
|
+
- John Wood
|
12
|
+
autorequire:
|
13
|
+
bindir: bin
|
14
|
+
cert_chain: []
|
15
|
+
date: 2012-11-09 00:00:00.000000000 Z
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
18
|
+
name: pivotal-tracker
|
19
|
+
requirement: !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - ! '>='
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: '0'
|
25
|
+
type: :runtime
|
26
|
+
prerelease: false
|
27
|
+
version_requirements: !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: rake
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
none: false
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
type: :development
|
42
|
+
prerelease: false
|
43
|
+
version_requirements: !ruby/object:Gem::Requirement
|
44
|
+
none: false
|
45
|
+
requirements:
|
46
|
+
- - ! '>='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: mocha
|
51
|
+
requirement: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
type: :development
|
58
|
+
prerelease: false
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
60
|
+
none: false
|
61
|
+
requirements:
|
62
|
+
- - ! '>='
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
- !ruby/object:Gem::Dependency
|
66
|
+
name: simplecov
|
67
|
+
requirement: !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ! '>='
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
73
|
+
type: :development
|
74
|
+
prerelease: false
|
75
|
+
version_requirements: !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
77
|
+
requirements:
|
78
|
+
- - ! '>='
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: aruba
|
83
|
+
requirement: !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ! '>='
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
type: :development
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
92
|
+
none: false
|
93
|
+
requirements:
|
94
|
+
- - ! '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
none: false
|
101
|
+
requirements:
|
102
|
+
- - ! '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
type: :development
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
none: false
|
109
|
+
requirements:
|
110
|
+
- - ! '>='
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '0'
|
113
|
+
- !ruby/object:Gem::Dependency
|
114
|
+
name: cucumber
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
116
|
+
none: false
|
117
|
+
requirements:
|
118
|
+
- - ! '>='
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
121
|
+
type: :development
|
122
|
+
prerelease: false
|
123
|
+
version_requirements: !ruby/object:Gem::Requirement
|
124
|
+
none: false
|
125
|
+
requirements:
|
126
|
+
- - ! '>='
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
version: '0'
|
129
|
+
- !ruby/object:Gem::Dependency
|
130
|
+
name: pry
|
131
|
+
requirement: !ruby/object:Gem::Requirement
|
132
|
+
none: false
|
133
|
+
requirements:
|
134
|
+
- - ! '>='
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '0'
|
137
|
+
type: :development
|
138
|
+
prerelease: false
|
139
|
+
version_requirements: !ruby/object:Gem::Requirement
|
140
|
+
none: false
|
141
|
+
requirements:
|
142
|
+
- - ! '>='
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '0'
|
145
|
+
description: A collection of git utilities to ease integration with Pivotal Tracker.
|
146
|
+
email: john@johnpwood.net
|
147
|
+
executables:
|
148
|
+
- git-finish
|
149
|
+
- git-info
|
150
|
+
- git-start
|
151
|
+
extensions: []
|
152
|
+
extra_rdoc_files: []
|
153
|
+
files:
|
154
|
+
- .gitignore
|
155
|
+
- .rspec
|
156
|
+
- .rvmrc
|
157
|
+
- .travis.yml
|
158
|
+
- CHANGELOG
|
159
|
+
- Gemfile
|
160
|
+
- Gemfile.lock
|
161
|
+
- LICENSE
|
162
|
+
- Rakefile
|
163
|
+
- VERSION
|
164
|
+
- bin/git-finish
|
165
|
+
- bin/git-info
|
166
|
+
- bin/git-start
|
167
|
+
- features/finish.feature
|
168
|
+
- features/info.feature
|
169
|
+
- features/start.feature
|
170
|
+
- features/step_definitions/steps.rb
|
171
|
+
- features/support/dsl/assertions.rb
|
172
|
+
- features/support/dsl/data.rb
|
173
|
+
- features/support/dsl/pivotal.rb
|
174
|
+
- features/support/env.rb
|
175
|
+
- features/support/git-pivotal.rb
|
176
|
+
- features/test_repo/origin.git/COMMIT_EDITMSG
|
177
|
+
- features/test_repo/origin.git/HEAD
|
178
|
+
- features/test_repo/origin.git/config
|
179
|
+
- features/test_repo/origin.git/description
|
180
|
+
- features/test_repo/origin.git/hooks/applypatch-msg.sample
|
181
|
+
- features/test_repo/origin.git/hooks/commit-msg.sample
|
182
|
+
- features/test_repo/origin.git/hooks/post-commit.sample
|
183
|
+
- features/test_repo/origin.git/hooks/post-receive.sample
|
184
|
+
- features/test_repo/origin.git/hooks/post-update.sample
|
185
|
+
- features/test_repo/origin.git/hooks/pre-applypatch.sample
|
186
|
+
- features/test_repo/origin.git/hooks/pre-commit.sample
|
187
|
+
- features/test_repo/origin.git/hooks/pre-rebase.sample
|
188
|
+
- features/test_repo/origin.git/hooks/prepare-commit-msg.sample
|
189
|
+
- features/test_repo/origin.git/hooks/update.sample
|
190
|
+
- features/test_repo/origin.git/index
|
191
|
+
- features/test_repo/origin.git/info/exclude
|
192
|
+
- features/test_repo/origin.git/logs/HEAD
|
193
|
+
- features/test_repo/origin.git/logs/refs/heads/master
|
194
|
+
- features/test_repo/origin.git/objects/0c/6f7b1384910d1a2f137590095f008a06c7e00c
|
195
|
+
- features/test_repo/origin.git/objects/10/ecf2b7ce989f01f3f7266e712b48d9275f2635
|
196
|
+
- features/test_repo/origin.git/objects/a5/71d56305df09fb060f6ccb730b46080d305beb
|
197
|
+
- features/test_repo/origin.git/refs/heads/master
|
198
|
+
- features/test_repo/readme
|
199
|
+
- git-pivotal-tracker-centro.gemspec
|
200
|
+
- lib/commands/base.rb
|
201
|
+
- lib/commands/bug.rb
|
202
|
+
- lib/commands/card.rb
|
203
|
+
- lib/commands/chore.rb
|
204
|
+
- lib/commands/feature.rb
|
205
|
+
- lib/commands/finish.rb
|
206
|
+
- lib/commands/info.rb
|
207
|
+
- lib/commands/map.rb
|
208
|
+
- lib/commands/pick.rb
|
209
|
+
- lib/commands/start.rb
|
210
|
+
- lib/git-pivotal-tracker.rb
|
211
|
+
- readme.markdown
|
212
|
+
- spec/commands/base_spec.rb
|
213
|
+
- spec/commands/bug_spec.rb
|
214
|
+
- spec/commands/chore_spec.rb
|
215
|
+
- spec/commands/feature_spec.rb
|
216
|
+
- spec/commands/finish_spec.rb
|
217
|
+
- spec/commands/map_spec.rb
|
218
|
+
- spec/commands/start_spec.rb
|
219
|
+
- spec/factories.rb
|
220
|
+
- spec/factory.rb
|
221
|
+
- spec/spec_helper.rb
|
222
|
+
homepage: https://github.com/centro/git-pivotal
|
223
|
+
licenses: []
|
224
|
+
post_install_message:
|
225
|
+
rdoc_options: []
|
226
|
+
require_paths:
|
227
|
+
- lib
|
228
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
229
|
+
none: false
|
230
|
+
requirements:
|
231
|
+
- - ! '>='
|
232
|
+
- !ruby/object:Gem::Version
|
233
|
+
version: '0'
|
234
|
+
segments:
|
235
|
+
- 0
|
236
|
+
hash: 3181363981249985797
|
237
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
238
|
+
none: false
|
239
|
+
requirements:
|
240
|
+
- - ! '>'
|
241
|
+
- !ruby/object:Gem::Version
|
242
|
+
version: 1.3.1
|
243
|
+
requirements: []
|
244
|
+
rubyforge_project:
|
245
|
+
rubygems_version: 1.8.23
|
246
|
+
signing_key:
|
247
|
+
specification_version: 3
|
248
|
+
summary: A collection of git utilities to ease integration with Pivotal Tracker.
|
249
|
+
test_files:
|
250
|
+
- features/finish.feature
|
251
|
+
- features/info.feature
|
252
|
+
- features/start.feature
|
253
|
+
- features/step_definitions/steps.rb
|
254
|
+
- features/support/dsl/assertions.rb
|
255
|
+
- features/support/dsl/data.rb
|
256
|
+
- features/support/dsl/pivotal.rb
|
257
|
+
- features/support/env.rb
|
258
|
+
- features/support/git-pivotal.rb
|
259
|
+
- features/test_repo/origin.git/COMMIT_EDITMSG
|
260
|
+
- features/test_repo/origin.git/HEAD
|
261
|
+
- features/test_repo/origin.git/config
|
262
|
+
- features/test_repo/origin.git/description
|
263
|
+
- features/test_repo/origin.git/hooks/applypatch-msg.sample
|
264
|
+
- features/test_repo/origin.git/hooks/commit-msg.sample
|
265
|
+
- features/test_repo/origin.git/hooks/post-commit.sample
|
266
|
+
- features/test_repo/origin.git/hooks/post-receive.sample
|
267
|
+
- features/test_repo/origin.git/hooks/post-update.sample
|
268
|
+
- features/test_repo/origin.git/hooks/pre-applypatch.sample
|
269
|
+
- features/test_repo/origin.git/hooks/pre-commit.sample
|
270
|
+
- features/test_repo/origin.git/hooks/pre-rebase.sample
|
271
|
+
- features/test_repo/origin.git/hooks/prepare-commit-msg.sample
|
272
|
+
- features/test_repo/origin.git/hooks/update.sample
|
273
|
+
- features/test_repo/origin.git/index
|
274
|
+
- features/test_repo/origin.git/info/exclude
|
275
|
+
- features/test_repo/origin.git/logs/HEAD
|
276
|
+
- features/test_repo/origin.git/logs/refs/heads/master
|
277
|
+
- features/test_repo/origin.git/objects/0c/6f7b1384910d1a2f137590095f008a06c7e00c
|
278
|
+
- features/test_repo/origin.git/objects/10/ecf2b7ce989f01f3f7266e712b48d9275f2635
|
279
|
+
- features/test_repo/origin.git/objects/a5/71d56305df09fb060f6ccb730b46080d305beb
|
280
|
+
- features/test_repo/origin.git/refs/heads/master
|
281
|
+
- features/test_repo/readme
|
282
|
+
- spec/commands/base_spec.rb
|
283
|
+
- spec/commands/bug_spec.rb
|
284
|
+
- spec/commands/chore_spec.rb
|
285
|
+
- spec/commands/feature_spec.rb
|
286
|
+
- spec/commands/finish_spec.rb
|
287
|
+
- spec/commands/map_spec.rb
|
288
|
+
- spec/commands/start_spec.rb
|
289
|
+
- spec/factories.rb
|
290
|
+
- spec/factory.rb
|
291
|
+
- spec/spec_helper.rb
|