story_branch 0.3.1 → 0.3.3
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.
- checksums.yaml +4 -4
- data/.circleci/config.yml +69 -15
- data/.circleci/setup-rubygems.sh +8 -0
- data/Changelog +341 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -0
- data/exe/git-finish +1 -1
- data/exe/git-start +1 -1
- data/exe/git-story +1 -1
- data/exe/git-unstart +1 -1
- data/lib/story_branch/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88d329246f46653a325a892dd5ea2c0a9b2d486c
|
4
|
+
data.tar.gz: 93122538de6bfb7dd0943366602e6bb23554a5d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d02a9623ed39bc5121fc03d2511164410b08882c7e68afb30c0adeea35ea61deee608b41b35306ff34bec014e4ee92580af788b4c170f9a87a9bb692685250c
|
7
|
+
data.tar.gz: 1e49a278f7763282a58eb66782f28cf2437ec2771599ed25c94d0cb153d55918afe6e2411b123064e91f673bac46cbb23596956e8ecf5333f5cfaf703fe09734
|
data/.circleci/config.yml
CHANGED
@@ -1,25 +1,19 @@
|
|
1
1
|
version: 2
|
2
|
-
jobs:
|
3
|
-
build:
|
4
|
-
docker:
|
5
|
-
# specify the version you desire here
|
6
|
-
- image: circleci/ruby:2.4.1-node-browsers
|
7
|
-
|
8
|
-
# Specify service dependencies here if necessary
|
9
|
-
# CircleCI maintains a library of pre-built images
|
10
|
-
# documented at https://circleci.com/docs/2.0/circleci-images/
|
11
|
-
# - image: circleci/postgres:9.4
|
12
2
|
|
13
|
-
|
3
|
+
defaults: &defaults
|
4
|
+
docker:
|
5
|
+
- image: circleci/ruby:2.4.1-node-browsers
|
6
|
+
working_directory: ~/repo
|
14
7
|
|
8
|
+
jobs:
|
9
|
+
test:
|
10
|
+
<<: *defaults
|
15
11
|
steps:
|
16
12
|
- checkout
|
17
13
|
|
18
|
-
# Download and cache dependencies
|
19
14
|
- restore_cache:
|
20
15
|
keys:
|
21
16
|
- v1-dependencies-{{ checksum "Gemfile.lock" }}
|
22
|
-
# fallback to using the latest cache if no exact match is found
|
23
17
|
- v1-dependencies-
|
24
18
|
|
25
19
|
- run:
|
@@ -33,7 +27,6 @@ jobs:
|
|
33
27
|
- ./vendor/bundle
|
34
28
|
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
|
35
29
|
|
36
|
-
# run tests!
|
37
30
|
- run:
|
38
31
|
name: run tests
|
39
32
|
command: |
|
@@ -45,9 +38,70 @@ jobs:
|
|
45
38
|
--out /tmp/test-results/rspec.xml \
|
46
39
|
$TEST_FILES
|
47
40
|
|
48
|
-
# collect reports
|
49
41
|
- store_test_results:
|
50
42
|
path: /tmp/test-results
|
51
43
|
- store_artifacts:
|
52
44
|
path: /tmp/test-results
|
53
45
|
destination: test-results
|
46
|
+
|
47
|
+
publish:
|
48
|
+
<<: *defaults
|
49
|
+
steps:
|
50
|
+
- checkout
|
51
|
+
|
52
|
+
- restore_cache:
|
53
|
+
keys:
|
54
|
+
- v1-dependencies-{{ checksum "Gemfile.lock" }}
|
55
|
+
- v1-dependencies-
|
56
|
+
|
57
|
+
- run:
|
58
|
+
name: install dependencies
|
59
|
+
command: |
|
60
|
+
gem install bundler
|
61
|
+
bundle install --jobs=4 --retry=3 --path vendor/bundle
|
62
|
+
|
63
|
+
- save_cache:
|
64
|
+
paths:
|
65
|
+
- ./vendor/bundle
|
66
|
+
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
|
67
|
+
|
68
|
+
- run:
|
69
|
+
name: Setup Rubygems
|
70
|
+
command: bash .circleci/setup-rubygems.sh
|
71
|
+
|
72
|
+
- run:
|
73
|
+
name: Publish to Rubygems
|
74
|
+
command: |
|
75
|
+
echo "-------- 8< --------"
|
76
|
+
ls ~/.gem/
|
77
|
+
|
78
|
+
cat ~/.gem/credentials
|
79
|
+
echo "-------- >8 --------"
|
80
|
+
|
81
|
+
CURRENT_VERSION=$(ruby -r "./lib/story_branch/version.rb" -e "puts StoryBranch::VERSION")
|
82
|
+
CURRENT_TAG=$(git tag --points-at HEAD)
|
83
|
+
|
84
|
+
if [[ "$CURRENT_TAG" == "$CURRENT_VERSION" ]]; then
|
85
|
+
gem build story_branch.gemspec
|
86
|
+
gem push --backtrace --debug --verbose "story_branch-${CURRENT_VERSION}.gem"
|
87
|
+
else
|
88
|
+
echo "Not a version tagged commit..."
|
89
|
+
fi
|
90
|
+
|
91
|
+
shred -u ~/.gem/credentials
|
92
|
+
|
93
|
+
workflows:
|
94
|
+
version: 2
|
95
|
+
test-and-publish:
|
96
|
+
jobs:
|
97
|
+
- test:
|
98
|
+
filters:
|
99
|
+
branches:
|
100
|
+
only: /.*/
|
101
|
+
|
102
|
+
- publish:
|
103
|
+
requires:
|
104
|
+
- test
|
105
|
+
filters:
|
106
|
+
branches:
|
107
|
+
only: master
|
data/Changelog
ADDED
@@ -0,0 +1,341 @@
|
|
1
|
+
v0.3.1
|
2
|
+
|
3
|
+
commit 0b230a3a5f7c2da70c42867d9b9c9dac30e7cf90
|
4
|
+
Author: Rui <rui.p.baltazar@gmail.com>
|
5
|
+
Date: Tue Jun 26 15:18:37 2018 +0800
|
6
|
+
|
7
|
+
[Resolves #44] Story branch finish is broken
|
8
|
+
|
9
|
+
Changes made:
|
10
|
+
|
11
|
+
- Making use of TTY Prompt to collect input from the user
|
12
|
+
- Cleaned up some code on PivotalUtils to simplify logic
|
13
|
+
- Improved test coverage on String Utils
|
14
|
+
|
15
|
+
commit 52d3fbf34d1b7016d6e5ecc8a62b5fba1469c2d1
|
16
|
+
Author: Rui <rui.p.baltazar@gmail.com>
|
17
|
+
Date: Mon Jun 25 18:37:25 2018 +0800
|
18
|
+
|
19
|
+
[Resolves #30] Update to use Ruby 2.3.0 minimum
|
20
|
+
|
21
|
+
# Changes made
|
22
|
+
|
23
|
+
- Added minimum version to gemspec
|
24
|
+
- Added .ruby-version file with ruby 2.3.1.
|
25
|
+
- Cleanup a lot of the rubocop warnings
|
26
|
+
|
27
|
+
# How does this address the issue reported?
|
28
|
+
|
29
|
+
Adding the minimum version to the gemspec, naturally solves the issue reported.
|
30
|
+
The addition of ruby-version file allows us to run rubocop with a higher ruby version specified (and that matches our gemspec requirements). Consequently, I tried to cleanup most of the warnings. I didn't clean up all of them because they are in files that I'd like to refactor soon, so I'm avoiding spending time in rubocopying things that will be touched soon.
|
31
|
+
|
32
|
+
Ultimately, our CI should also check for rubocop rule breaking and warn us/stop the merging in case they fail.
|
33
|
+
|
34
|
+
commit 0677d23de228d2d7731891b66b73868c8c54fca2
|
35
|
+
Author: Rui <rui.p.baltazar@gmail.com>
|
36
|
+
Date: Thu Jun 21 13:21:57 2018 +0800
|
37
|
+
|
38
|
+
[Resolves #32] Support multiple configurations
|
39
|
+
|
40
|
+
- Added TTY functionalities
|
41
|
+
- Running the commands using TTY::Command
|
42
|
+
- Added Migrate command to upgrade current public version to new version
|
43
|
+
- Updated dependencies
|
44
|
+
- Updated readme for a more comprehensive usage
|
45
|
+
- Increased test coverage
|
46
|
+
|
47
|
+
commit aa7fde748d08a80f1a613734251cc4dc6d967224
|
48
|
+
Author: Rui Baltazar <rui.p.baltazar@gmail.com>
|
49
|
+
Date: Mon Jun 4 14:47:53 2018 +0800
|
50
|
+
|
51
|
+
[Finishes #27] Allow config finish tag
|
52
|
+
|
53
|
+
commit d077666f5ac15f1f96ed7f78679ba1e98148c1c8
|
54
|
+
Author: Jasonm23 <jasonm23@gmail.com>
|
55
|
+
Date: Tue Nov 14 15:12:58 2017 +0800
|
56
|
+
|
57
|
+
0.2.13 - fix bail on empty config file
|
58
|
+
|
59
|
+
commit 9728b89400c524863af643b5a663982e9e4aa988
|
60
|
+
Author: Lincoln Lee <git@lincoln.hk>
|
61
|
+
Date: Wed Jun 8 11:07:06 2016 +0800
|
62
|
+
|
63
|
+
Bump version to 0.2.12
|
64
|
+
|
65
|
+
commit 34c0a8d0fd54a7f8e8c2e1df1b4351e7e99cd7b5
|
66
|
+
Author: Lincoln Lee <git@lincoln.hk>
|
67
|
+
Date: Tue Jun 7 17:03:00 2016 +0800
|
68
|
+
|
69
|
+
Remove byebug since it is not in dependency
|
70
|
+
|
71
|
+
commit e98cf44342018f0a64de3bc0d012bd10a9c7b465
|
72
|
+
Author: Rui Baltazar <rui.p.baltazar@gmail.com>
|
73
|
+
Date: Thu Mar 31 12:37:05 2016 +0800
|
74
|
+
|
75
|
+
[Hotfix] If there is no config file it crashes
|
76
|
+
|
77
|
+
commit 217b5fd6a695d02ca77dbe572e6ab823011121e7
|
78
|
+
Author: Rui Baltazar <rui@opsmanager.com>
|
79
|
+
Date: Tue Mar 8 12:13:15 2016 +0800
|
80
|
+
|
81
|
+
Load config from different files
|
82
|
+
|
83
|
+
Allow one of the configs to be loaded from a global config file
|
84
|
+
(~/.story_branch)
|
85
|
+
while others from the project root config file
|
86
|
+
(.story_branch)
|
87
|
+
|
88
|
+
commit f8e2d62def48414c4f8695085410d813cf9ce1c2
|
89
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
90
|
+
Date: Fri May 15 14:03:00 2015 +0800
|
91
|
+
|
92
|
+
Fix strip newlines - bump to 0.2.9
|
93
|
+
|
94
|
+
commit 0bfff93a6cd1cb5e1eb8d53be50a0b28627320c2
|
95
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
96
|
+
Date: Tue May 12 17:47:22 2015 +0800
|
97
|
+
|
98
|
+
Removed pivotal-tracker gem dependency,
|
99
|
+
|
100
|
+
- Now using Blanket Wrapper to access Pivotal API
|
101
|
+
- Cleaned up
|
102
|
+
- Bumped version to 0.2.8
|
103
|
+
|
104
|
+
commit 24a5b8a8fad6630a40947923f9fcca91a3627710
|
105
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
106
|
+
Date: Tue Apr 14 18:57:34 2015 +0800
|
107
|
+
|
108
|
+
Update to 0.2.7 remove deprecated cli bins
|
109
|
+
|
110
|
+
commit 8186f0672b5dba135c36f08b048330fe59046180
|
111
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
112
|
+
Date: Wed Sep 17 11:20:20 2014 +0800
|
113
|
+
|
114
|
+
Update to 0.2.5
|
115
|
+
|
116
|
+
- Fix error story_branch/issues/15 on git finish
|
117
|
+
- Fix error story_branch/issues/16 newlines in story names
|
118
|
+
- Fix existing branch / story validation
|
119
|
+
- Improve / simplify error messages
|
120
|
+
- Improve name sanitisation
|
121
|
+
- Added story unstart
|
122
|
+
|
123
|
+
commit 96a280c6c76485dc3e9442ee41cd3bb203508df7
|
124
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
125
|
+
Date: Fri Aug 22 14:27:47 2014 +0800
|
126
|
+
|
127
|
+
0.2.4 - Fixes problem with story finish
|
128
|
+
|
129
|
+
commit dc6d423d36466a78c7bf9391e18079a44f3c3c26
|
130
|
+
Author: Jason Milkins <pair+jason@neo.com>
|
131
|
+
Date: Thu Aug 21 10:53:21 2014 +0800
|
132
|
+
|
133
|
+
Bump to 0.2.3 fix rb-readline dependency
|
134
|
+
|
135
|
+
commit d7329f94d4cb8030f2eb34c24b67b3173c85bfd2
|
136
|
+
Author: Jason Milkins <pair+jason@neo.com>
|
137
|
+
Date: Tue Aug 19 10:35:43 2014 +0800
|
138
|
+
|
139
|
+
Bump to 0.2.2
|
140
|
+
|
141
|
+
- update to 0.2.2
|
142
|
+
- fix specs and rspec reporter
|
143
|
+
- use rb-readline
|
144
|
+
- fix Readline completion, using rb-readline
|
145
|
+
- add pry for debugging support
|
146
|
+
- output errors to stderr
|
147
|
+
- update readme
|
148
|
+
|
149
|
+
commit 9fb4edef8376f609ecb041b454a5670eea82c15f
|
150
|
+
Author: Jason Milkins <pair+jason@neo.com>
|
151
|
+
Date: Mon Aug 18 17:44:40 2014 +0800
|
152
|
+
|
153
|
+
Modify completion system, general improvements
|
154
|
+
|
155
|
+
commit 5592b17c53eb9e45f35e55127799e538d40784e2
|
156
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
157
|
+
Date: Mon Aug 18 10:55:50 2014 +0800
|
158
|
+
|
159
|
+
Humanize / undash the commit message description (from the branch name)
|
160
|
+
|
161
|
+
commit 7e839ac031cbc86e233181a74b83ab8338c6dca4
|
162
|
+
Author: Jason Milkins <pair+jason@neo.com>
|
163
|
+
Date: Tue Aug 12 17:43:30 2014 +0800
|
164
|
+
|
165
|
+
0.2.0 add start and finish stories.
|
166
|
+
|
167
|
+
commit 94e5c307069962411f24c6b1646d5ea478b48866
|
168
|
+
Author: Anton Kolomiychuk <kolomiychuk.anton@gmail.com>
|
169
|
+
Date: Sun Aug 10 21:40:30 2014 +0700
|
170
|
+
|
171
|
+
Fix path in symlinks
|
172
|
+
|
173
|
+
commit b652aedf78869e77aae5ee972889ab8f7a0ae1f4
|
174
|
+
Author: Dominic Wong and Jason Milkins <pair+dominic+jason@opsmanager.com>
|
175
|
+
Date: Tue Jun 24 11:09:32 2014 +0800
|
176
|
+
|
177
|
+
Bump Version, 0.1.8 and update README
|
178
|
+
|
179
|
+
commit eca913b83bdeda6d837a935676da3c8061937f06
|
180
|
+
Author: Dominic Wong and Jason Milkins <pair+dominic+jason@opsmanager.com>
|
181
|
+
Date: Tue Jun 24 11:05:51 2014 +0800
|
182
|
+
|
183
|
+
Remove constraint to master as feature parent.
|
184
|
+
|
185
|
+
commit f8ba04eeeff8162283bb0cb85473e351bddbb2b1
|
186
|
+
Author: Dominic Wong and Jason Milkins <pair+dominic+jason@opsmanager.com>
|
187
|
+
Date: Fri Jun 6 12:07:56 2014 +0800
|
188
|
+
|
189
|
+
Add aliases for story_branch executable
|
190
|
+
|
191
|
+
commit 7c10b0aa3e9f0cb347ba8904a8d022969079e15e
|
192
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
193
|
+
Date: Mon May 26 10:34:12 2014 +0800
|
194
|
+
|
195
|
+
0.1.5 - tidy up output and add LICENCE
|
196
|
+
|
197
|
+
commit 3acd7d23f2dda9c831567c32ff01bc35951ad5d9
|
198
|
+
Author: Dominic Wong and Jason Milkins <pair+dominic+jason@opsmanager.com>
|
199
|
+
Date: Thu May 15 09:58:03 2014 +0800
|
200
|
+
|
201
|
+
0.1.4 update name generation / translation rules
|
202
|
+
|
203
|
+
commit b1ff6e11618c14516f80ca80f2673db3d9a84018
|
204
|
+
Author: Jason Milkins and Rui Baltazar <pair+jason+rui@opsmanager.com>
|
205
|
+
Date: Wed May 14 09:33:06 2014 +0800
|
206
|
+
|
207
|
+
Squeeze multiple dashes in suggested branch name
|
208
|
+
|
209
|
+
commit 6bba372627b53bb7ed618ca90ec86e441c9b45de
|
210
|
+
Author: Jason Milkins and Rui Baltazar <pair+jason+rui@opsmanager.com>
|
211
|
+
Date: Mon Apr 21 11:58:56 2014 +0800
|
212
|
+
|
213
|
+
remove logging
|
214
|
+
|
215
|
+
commit 388e3826cd6dd1c58f24c46f9d2c869e0077210a
|
216
|
+
Author: Jason Milkins and Rui Baltazar <pair+jason+rui@opsmanager.com>
|
217
|
+
Date: Mon Apr 21 11:57:23 2014 +0800
|
218
|
+
|
219
|
+
bug fix
|
220
|
+
|
221
|
+
commit 73e1ce430fa35370b9cfe167a7ae40a7b0207222
|
222
|
+
Author: Jason Milkins and Rui Baltazar <pair+jason+rui@opsmanager.com>
|
223
|
+
Date: Mon Apr 21 11:52:43 2014 +0800
|
224
|
+
|
225
|
+
ignore .pairs
|
226
|
+
|
227
|
+
commit df1a4ab804ab9349f1c1036fd0657246775ee192
|
228
|
+
Merge: cfab909 ab7da6c
|
229
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
230
|
+
Date: Mon Apr 21 11:44:22 2014 +0800
|
231
|
+
|
232
|
+
0.1.1 release
|
233
|
+
|
234
|
+
commit ab7da6cd1f123702c7bf177f5d7469e1b5e77097
|
235
|
+
Author: Rui Baltazar <rui.p.baltazar@gmail.com>
|
236
|
+
Date: Sun Apr 20 13:57:48 2014 +0800
|
237
|
+
|
238
|
+
updated code to require gem instead of relative paths
|
239
|
+
|
240
|
+
commit 4f0b5f99f1e20e87011dc1d432a9e4a48b72eea5
|
241
|
+
Author: Rui Baltazar <rui.p.baltazar@gmail.com>
|
242
|
+
Date: Sun Apr 20 13:53:40 2014 +0800
|
243
|
+
|
244
|
+
Finishes #4 test definition
|
245
|
+
|
246
|
+
commit 82b0d9553d4538cd88b663ceb68c4d757b9ffcb1
|
247
|
+
Author: Rui Baltazar <rui.p.baltazar@gmail.com>
|
248
|
+
Date: Sun Apr 20 13:53:04 2014 +0800
|
249
|
+
|
250
|
+
clear test files for tests specifications
|
251
|
+
|
252
|
+
commit 19b0fcbd99ec169ebdadee623188cf666832a297
|
253
|
+
Author: Rui Baltazar <rui.p.baltazar@gmail.com>
|
254
|
+
Date: Sun Apr 20 13:52:10 2014 +0800
|
255
|
+
|
256
|
+
searches for existing file or environment set variable. Existing file overrides the env var
|
257
|
+
|
258
|
+
commit 2d28244cafc326b695e5f59402a6351574d19e22
|
259
|
+
Author: Rui Baltazar <rui.p.baltazar@gmail.com>
|
260
|
+
Date: Sat Apr 19 15:43:03 2014 +0800
|
261
|
+
|
262
|
+
Raise PIVOTAL_API_KEY exception if api key not found in env. added method to check if object is set with api_key and project_id
|
263
|
+
|
264
|
+
commit cfab9094c935da17b3dcabdcec4cc232686e49e0
|
265
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
266
|
+
Date: Sat Apr 19 02:08:21 2014 +0800
|
267
|
+
|
268
|
+
0.0.1 gem release
|
269
|
+
|
270
|
+
commit 7b0e45ef6869ed17e1b359db437703192de7720f
|
271
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
272
|
+
Date: Sat Apr 19 00:24:41 2014 +0800
|
273
|
+
|
274
|
+
Milestone 'twiddly-winks'
|
275
|
+
|
276
|
+
* Add usage info (draft) to file header
|
277
|
+
* Add simple_sanitize method to remove common punctuation from story
|
278
|
+
names / existing branch names
|
279
|
+
* Remove arbitrary 50 char limit on branch names
|
280
|
+
|
281
|
+
This milestone also merges in work by Rui Baltazar, to convert to a
|
282
|
+
command utility gem + refactoring into a class
|
283
|
+
|
284
|
+
commit 47eabe38e57521b6ae668c84831c8cd8f8ed6a51
|
285
|
+
Author: Rui Baltazar <rui.p.baltazar@gmail.com>
|
286
|
+
Date: Fri Apr 18 12:22:01 2014 +0800
|
287
|
+
|
288
|
+
removed levenshtein dependency. added ruby min version
|
289
|
+
|
290
|
+
commit b4453e894ace22b061c5f518a069e57054aa7633
|
291
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
292
|
+
Date: Sat Jan 25 20:04:57 2014 +0800
|
293
|
+
|
294
|
+
Milestone 'tequila-grizzly' DONE
|
295
|
+
|
296
|
+
* Look for pivotal project id (.pivotal-id) in repo root (we assume
|
297
|
+
we're in project root.) (we do this and fallback to checking
|
298
|
+
environment var)
|
299
|
+
|
300
|
+
commit b7033645dd857b81406415481ffc939a324ca9af
|
301
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
302
|
+
Date: Sat Jan 25 19:04:01 2014 +0800
|
303
|
+
|
304
|
+
Added Levenshtein Distance checking to branch names, to avoid names
|
305
|
+
which are too close together (and straight-up duplicates)
|
306
|
+
|
307
|
+
commit 892456299d5a3e2a5501b381e0d9da796fe2785d
|
308
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
309
|
+
Date: Sat Jan 25 10:00:12 2014 +0800
|
310
|
+
|
311
|
+
Added read-line support and re-factored
|
312
|
+
|
313
|
+
Read-line support (to use instead of gets)
|
314
|
+
|
315
|
+
Allow injection of history into read-line invocations
|
316
|
+
|
317
|
+
Injected selection numbers into story selection read-line history
|
318
|
+
|
319
|
+
Dashed / down-cased story name as a suggestion for the new feature
|
320
|
+
branch name
|
321
|
+
|
322
|
+
Injected dash/down-cased story name into new feature branch name
|
323
|
+
read-line history (move up to get it)
|
324
|
+
|
325
|
+
commit ebc55b1f401eba050fb2d4b0ff8a669260eca100
|
326
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
327
|
+
Date: Fri Jan 24 18:31:56 2014 +0800
|
328
|
+
|
329
|
+
Fix error testing PIVOTAL_PROJECT_ID
|
330
|
+
|
331
|
+
commit 909e04d979091446fb04eb29891027bc2befc9f6
|
332
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
333
|
+
Date: Fri Jan 24 18:22:32 2014 +0800
|
334
|
+
|
335
|
+
rename ptrak to story_branch
|
336
|
+
|
337
|
+
commit 4bc107eadffa534fe1e2e659638654a7bee9ff57
|
338
|
+
Author: jasonm23 <jasonm23@gmail.com>
|
339
|
+
Date: Fri Jan 24 17:53:38 2014 +0800
|
340
|
+
|
341
|
+
Basic version passing
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
[](http://badge.fury.io/rb/story_branch)
|
2
|
+
[](https://circleci.com/gh/story-branch/story_branch/tree/master)
|
2
3
|
|
3
4
|
# Story Branch
|
4
5
|
|
data/exe/git-finish
CHANGED
data/exe/git-start
CHANGED
data/exe/git-story
CHANGED
data/exe/git-unstart
CHANGED
data/lib/story_branch/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: story_branch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Milkins
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: exe
|
14
14
|
cert_chain: []
|
15
|
-
date: 2018-06-
|
15
|
+
date: 2018-06-29 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: blanket_wrapper
|
@@ -244,10 +244,12 @@ extensions: []
|
|
244
244
|
extra_rdoc_files: []
|
245
245
|
files:
|
246
246
|
- ".circleci/config.yml"
|
247
|
+
- ".circleci/setup-rubygems.sh"
|
247
248
|
- ".github/ISSUE_TEMPLATE.md"
|
248
249
|
- ".gitignore"
|
249
250
|
- ".rspec"
|
250
251
|
- ".ruby-version"
|
252
|
+
- Changelog
|
251
253
|
- Gemfile
|
252
254
|
- Gemfile.lock
|
253
255
|
- LICENSE.txt
|