mr_bump 0.3.6 → 0.3.7

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 CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- NjQ1YzdhMzBhYTY0YTkyMmYwMDM2YzBjNzY5OWZmN2UzZmE1MTU0Yg==
5
- data.tar.gz: !binary |-
6
- NjAzZTRkNGNmOWY0MTg1MTQxZWVjMWI3OTk2NjdmYTZhYzhhOGMzYg==
2
+ SHA1:
3
+ metadata.gz: 6679910a34eb8832cb4be13db633754c68378475
4
+ data.tar.gz: 91bee513183a14ce630a9fcebb7182701498c3eb
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- M2Y3ZDVlM2FlMDk4OTQ4NjEwZjk0OTZiMjhjMzlhN2JkZjIzMGI1NGY1YWM2
10
- MjdkODhjZDVkMGY3NmU2OWU4N2ZiYTVjZTJkYzczODBmZDgzMTg2N2VjYTI1
11
- ODZmMWJiZDk0OWI3NTliN2Q3NWZhN2ZlMDg3ZjM1ZTRmN2MxNWM=
12
- data.tar.gz: !binary |-
13
- OTg2NmNjNDU4ZDM0MmIwMjk5OWUwZDk4OGNjNjNjMDAzZTY1YTllYjY0NDBh
14
- OGYyMGNmNzlkZTI0YmJhYzE4M2FiMzYwZTdjZDY2OGFlYzFmNDYzOTk3Nzlj
15
- NjE4NjMwMjQ3YTRjMTNlNjhmMTI2YzZlNTJiNDFiMDE1ODQ1OGY=
6
+ metadata.gz: 7a2c12c0389a351cded5590159266e51fbb3b97a3c671901b077a868c793ac2ace62974cbab227edea4bdcc114975e724950459ebd11eb60d99d97d0214d91b0
7
+ data.tar.gz: 274a525cb137f0745cff94764005621de10f62ba4b82cbb74e24065e46f1a84be4f2ef7f887f117b9cf4c8cf811757fcc12500a0620888c642306722bc244c70
@@ -171,7 +171,9 @@ if develop
171
171
  exit 1 unless user_inp.strip == new_branch
172
172
  end
173
173
 
174
- changes = MrBump.change_log_items_for_range(last_release, MrBump.current_branch).map(&:to_md)
174
+ changes = MrBump.change_log_items_for_range(last_release, MrBump.current_branch)
175
+ .reject(&:has_no_detail?)
176
+ .map(&:to_md)
175
177
  changes = changes.join("\n")
176
178
  md_changes = "# #{new_release}\n#{changes}\n\n"
177
179
 
@@ -24,7 +24,7 @@
24
24
  # - comment_lines: Array of all lines in commit comment
25
25
  # - first_commit_line: The first line of the commit comment
26
26
  # - comment_body: The rest of the lines in the comment
27
- markdown_template: " * {{branch_type}} - {{#dev_id}}{{.}} - {{/dev_id}}{{first_comment_line}}{{#comment_body}}\n {{.}}{{/comment_body}}"
27
+ markdown_template: " * {{branch_type}}{{#dev_id}} - {{.}}{{/dev_id}}{{#first_comment_line}} - {{.}}{{/first_comment_line}}{{#comment_body}}\n {{.}}{{/comment_body}}"
28
28
 
29
29
  # Prefix for release branches, this allows arbitrary text to be added before the version number on a release branch
30
30
  release_prefix: release/
@@ -65,7 +65,7 @@ module MrBump
65
65
  def self.latest_release_from_list(branches)
66
66
  regex = Regexp.new("^origin/#{release_branch_regex}$")
67
67
  branches.map do |branch|
68
- matches = regex.match(branch)
68
+ matches = regex.match(branch.force_encoding("UTF-8"))
69
69
  MrBump::Version.new(matches[1]) if matches
70
70
  end.compact.max || MrBump::Version.new('0.0.0')
71
71
  end
@@ -39,6 +39,10 @@ module MrBump
39
39
  end
40
40
  end
41
41
 
42
+ def has_no_detail?
43
+ comment_lines.empty? && dev_id.nil?
44
+ end
45
+
42
46
  def first_comment_line
43
47
  comment_lines.first
44
48
  end
@@ -8,13 +8,14 @@ require 'mr_bump/change'
8
8
  describe MrBump::Change do
9
9
  let(:config) do
10
10
  {
11
- 'markdown_template' => ' * {{branch_type}} - {{#dev_id}}{{.}} - {{/dev_id}}' \
12
- "{{first_comment_line}}{{#comment_body}}\n {{.}}{{/comment_body}}"
11
+ 'markdown_template' => ' * {{branch_type}}{{#dev_id}} - {{.}}{{/dev_id}}' \
12
+ "{{#first_comment_line}} - {{.}}{{/first_comment_line}}{{#comment_body}}\n {{.}}{{/comment_body}}"
13
13
  }
14
14
  end
15
15
 
16
16
  context 'when loading from git log message' do
17
- let(:change) { described_class.from_gitlog(config, merge_str, ['Line 1', 'Line 2']) }
17
+ let(:comment_lines) { ['Line 1', 'Line 2'] }
18
+ subject(:change) { described_class.from_gitlog(config, merge_str, comment_lines) }
18
19
 
19
20
  context 'when given a merge string in the default PR format for a feature' do
20
21
  let(:merge_str) { 'Merge pull request #555 from AGithubUsername/feature/DEV-1_Stuff' }
@@ -34,6 +35,8 @@ describe MrBump::Change do
34
35
  it 'renders to markdown correctly' do
35
36
  expect(change.to_md).to eq(" * Feature - DEV-1 - Line 1\n Line 2")
36
37
  end
38
+
39
+ it { should_not have_no_detail }
37
40
  end
38
41
 
39
42
  context 'when given a merge string in the default PR format for a feature' do
@@ -54,6 +57,8 @@ describe MrBump::Change do
54
57
  it 'renders to markdown correctly' do
55
58
  expect(change.to_md).to eq(" * Feature - Line 1\n Line 2")
56
59
  end
60
+
61
+ it { should_not have_no_detail }
57
62
  end
58
63
 
59
64
  context 'when given a merge string in the default PR format for a bugfix' do
@@ -74,6 +79,8 @@ describe MrBump::Change do
74
79
  it 'renders to markdown correctly' do
75
80
  expect(change.to_md).to eq(" * Bugfix - DEV-1 - Line 1\n Line 2")
76
81
  end
82
+
83
+ it { should_not have_no_detail }
77
84
  end
78
85
 
79
86
  context 'when given a merge string in the default PR format for a bugfix' do
@@ -94,6 +101,8 @@ describe MrBump::Change do
94
101
  it 'renders to markdown correctly' do
95
102
  expect(change.to_md).to eq(" * Bugfix - Line 1\n Line 2")
96
103
  end
104
+
105
+ it { should_not have_no_detail }
97
106
  end
98
107
 
99
108
  context 'when given a merge string in the default PR format for a hotfix' do
@@ -114,6 +123,8 @@ describe MrBump::Change do
114
123
  it 'renders to markdown correctly' do
115
124
  expect(change.to_md).to eq(" * Hotfix - DEV-1 - Line 1\n Line 2")
116
125
  end
126
+
127
+ it { should_not have_no_detail }
117
128
  end
118
129
 
119
130
  context 'when given a merge string in the default PR format for a hotfix' do
@@ -134,6 +145,8 @@ describe MrBump::Change do
134
145
  it 'renders to markdown correctly' do
135
146
  expect(change.to_md).to eq(" * Hotfix - Line 1\n Line 2")
136
147
  end
148
+
149
+ it { should_not have_no_detail }
137
150
  end
138
151
 
139
152
  context 'when given a merge string in the default manual format for a feature' do
@@ -154,6 +167,8 @@ describe MrBump::Change do
154
167
  it 'renders to markdown correctly' do
155
168
  expect(change.to_md).to eq(" * Feature - DEV-1 - Line 1\n Line 2")
156
169
  end
170
+
171
+ it { should_not have_no_detail }
157
172
  end
158
173
 
159
174
  context 'when given a merge string in the default PR format for a feature' do
@@ -174,6 +189,8 @@ describe MrBump::Change do
174
189
  it 'renders to markdown correctly' do
175
190
  expect(change.to_md).to eq(" * Feature - Line 1\n Line 2")
176
191
  end
192
+
193
+ it { should_not have_no_detail }
177
194
  end
178
195
 
179
196
  context 'when given a merge string in the default manual format for a bugfix' do
@@ -194,6 +211,8 @@ describe MrBump::Change do
194
211
  it 'renders to markdown correctly' do
195
212
  expect(change.to_md).to eq(" * Bugfix - DEV-1 - Line 1\n Line 2")
196
213
  end
214
+
215
+ it { should_not have_no_detail }
197
216
  end
198
217
 
199
218
  context 'when given a merge string in the default PR format for a bugfix' do
@@ -214,6 +233,8 @@ describe MrBump::Change do
214
233
  it 'renders to markdown correctly' do
215
234
  expect(change.to_md).to eq(" * Bugfix - Line 1\n Line 2")
216
235
  end
236
+
237
+ it { should_not have_no_detail }
217
238
  end
218
239
 
219
240
  context 'when given a merge string in the default manual format for a hotfix' do
@@ -234,6 +255,8 @@ describe MrBump::Change do
234
255
  it 'renders to markdown correctly' do
235
256
  expect(change.to_md).to eq(" * Hotfix - DEV-1 - Line 1\n Line 2")
236
257
  end
258
+
259
+ it { should_not have_no_detail }
237
260
  end
238
261
 
239
262
  context 'when given a merge string in the default PR format for a hotfix' do
@@ -254,6 +277,8 @@ describe MrBump::Change do
254
277
  it 'renders to markdown correctly' do
255
278
  expect(change.to_md).to eq(" * Hotfix - Line 1\n Line 2")
256
279
  end
280
+
281
+ it { should_not have_no_detail }
257
282
  end
258
283
 
259
284
  context 'when no merge type given' do
@@ -273,11 +298,104 @@ describe MrBump::Change do
273
298
  it 'renders to markdown correctly' do
274
299
  expect(change.to_md).to eq(" * Task - Line 1\n Line 2")
275
300
  end
301
+
302
+ it { should_not have_no_detail }
303
+ end
304
+
305
+ context 'with no comment' do
306
+ let(:comment_lines) { [] }
307
+
308
+ context 'when given a merge string in the default PR format for a hotfix' do
309
+ let(:merge_str) { "Merge branch 'hotfix/Stuff'" }
310
+
311
+ it 'defaults PR Number to a blank string' do
312
+ expect(change.pr_number).to eq('')
313
+ end
314
+
315
+ it 'extracts the correct branch type' do
316
+ expect(change.branch_type).to eq('Hotfix')
317
+ end
318
+
319
+ it 'fails to extract dev ID' do
320
+ expect(change.dev_id).to be_nil
321
+ end
322
+
323
+ it 'renders to markdown correctly' do
324
+ expect(change.to_md).to eq(" * Hotfix")
325
+ end
326
+
327
+ it { should have_no_detail }
328
+ end
329
+
330
+ context 'when given a merge string in the default PR format for a bugfix' do
331
+ let(:merge_str) { "Merge branch 'bugfix/Stuff'" }
332
+
333
+ it 'defaults PR Number to a blank string' do
334
+ expect(change.pr_number).to eq('')
335
+ end
336
+
337
+ it 'extracts the correct branch type' do
338
+ expect(change.branch_type).to eq('Bugfix')
339
+ end
340
+
341
+ it 'fails to extract dev ID' do
342
+ expect(change.dev_id).to be_nil
343
+ end
344
+
345
+ it 'renders to markdown correctly' do
346
+ expect(change.to_md).to eq(" * Bugfix")
347
+ end
348
+
349
+ it { should have_no_detail }
350
+ end
351
+
352
+ context 'when given a merge string in the default PR format for a feature' do
353
+ let(:merge_str) { "Merge branch 'feature/Stuff'" }
354
+
355
+ it 'defaults PR Number to a blank string' do
356
+ expect(change.pr_number).to eq('')
357
+ end
358
+
359
+ it 'extracts the correct branch type' do
360
+ expect(change.branch_type).to eq('Feature')
361
+ end
362
+
363
+ it 'fails to extract dev ID' do
364
+ expect(change.dev_id).to be_nil
365
+ end
366
+
367
+ it 'renders to markdown correctly' do
368
+ expect(change.to_md).to eq(" * Feature")
369
+ end
370
+
371
+ it { should have_no_detail }
372
+ end
373
+
374
+ context 'when no merge type given' do
375
+ let(:merge_str) { 'Merge pull request #1224 from Xulaus/gem_bump' }
376
+ it 'extracts the correct PR Number' do
377
+ expect(change.pr_number).to eq('1224')
378
+ end
379
+
380
+ it 'defaults the branch type to "Task"' do
381
+ expect(change.branch_type).to eq('Task')
382
+ end
383
+
384
+ it 'fails to extract dev ID' do
385
+ expect(change.dev_id).to be_nil
386
+ end
387
+
388
+ it 'renders to markdown correctly' do
389
+ expect(change.to_md).to eq(" * Task")
390
+ end
391
+
392
+ it { should have_no_detail }
393
+ end
276
394
  end
277
395
  end
278
396
 
279
397
  context 'when loading from markdown' do
280
- let(:change) { described_class.from_md(config, md_str) }
398
+ subject(:change) { described_class.from_md(config, md_str) }
281
399
 
282
400
  context 'with bugfix and no DevID given' do
283
401
  let(:md_str) { " * Bugfix - Line 1\n Line 2\n Line 3" }
@@ -293,6 +411,8 @@ describe MrBump::Change do
293
411
  it 'renders to markdown correctly' do
294
412
  expect(change.to_md).to eq(md_str)
295
413
  end
414
+
415
+ it { should_not have_no_detail }
296
416
  end
297
417
 
298
418
  context 'with feature and no DevID given' do
@@ -309,6 +429,8 @@ describe MrBump::Change do
309
429
  it 'renders to markdown correctly' do
310
430
  expect(change.to_md).to eq(md_str)
311
431
  end
432
+
433
+ it { should_not have_no_detail }
312
434
  end
313
435
 
314
436
  context 'with hotfix and no DevID given' do
@@ -325,6 +447,8 @@ describe MrBump::Change do
325
447
  it 'renders to markdown correctly' do
326
448
  expect(change.to_md).to eq(md_str)
327
449
  end
450
+
451
+ it { should_not have_no_detail }
328
452
  end
329
453
 
330
454
  context 'with task and no DevID given' do
@@ -341,6 +465,8 @@ describe MrBump::Change do
341
465
  it 'renders to markdown correctly' do
342
466
  expect(change.to_md).to eq(md_str)
343
467
  end
468
+
469
+ it { should_not have_no_detail }
344
470
  end
345
471
 
346
472
  context 'with bugfix and no DevID given, and no second line' do
@@ -357,6 +483,8 @@ describe MrBump::Change do
357
483
  it 'renders to markdown correctly' do
358
484
  expect(change.to_md).to eq(md_str)
359
485
  end
486
+
487
+ it { should_not have_no_detail }
360
488
  end
361
489
 
362
490
  context 'with feature and no DevID given, and no second line' do
@@ -373,6 +501,8 @@ describe MrBump::Change do
373
501
  it 'renders to markdown correctly' do
374
502
  expect(change.to_md).to eq(md_str)
375
503
  end
504
+
505
+ it { should_not have_no_detail }
376
506
  end
377
507
 
378
508
  context 'with hotfix and no DevID given, and no second line' do
@@ -389,6 +519,8 @@ describe MrBump::Change do
389
519
  it 'renders to markdown correctly' do
390
520
  expect(change.to_md).to eq(md_str)
391
521
  end
522
+
523
+ it { should_not have_no_detail }
392
524
  end
393
525
 
394
526
  context 'with task and no DevID given, and no second line' do
@@ -405,9 +537,11 @@ describe MrBump::Change do
405
537
  it 'renders to markdown correctly' do
406
538
  expect(change.to_md).to eq(md_str)
407
539
  end
540
+
541
+ it { should_not have_no_detail }
408
542
  end
409
543
 
410
- context 'with bugfix and no DevID given' do
544
+ context 'with bugfix and DevID given' do
411
545
  let(:md_str) { " * Bugfix - ASDASD-123123 - Line 1\n Line 2\n Line 3" }
412
546
 
413
547
  it 'extracts the correct branch type' do
@@ -421,9 +555,11 @@ describe MrBump::Change do
421
555
  it 'renders to markdown correctly' do
422
556
  expect(change.to_md).to eq(md_str)
423
557
  end
558
+
559
+ it { should_not have_no_detail }
424
560
  end
425
561
 
426
- context 'with feature and no DevID given' do
562
+ context 'with feature and DevID given' do
427
563
  let(:md_str) { " * Feature - WHUT00 - Line 1\n Line 2\n Line 3" }
428
564
 
429
565
  it 'extracts the correct branch type' do
@@ -437,9 +573,11 @@ describe MrBump::Change do
437
573
  it 'renders to markdown correctly' do
438
574
  expect(change.to_md).to eq(md_str)
439
575
  end
576
+
577
+ it { should_not have_no_detail }
440
578
  end
441
579
 
442
- context 'with hotfix and no DevID given' do
580
+ context 'with hotfix and DevID given' do
443
581
  let(:md_str) { " * Hotfix - WJNASD-123 - Line 1\n Line 2\n Line 3" }
444
582
 
445
583
  it 'extracts the correct branch type' do
@@ -453,9 +591,11 @@ describe MrBump::Change do
453
591
  it 'renders to markdown correctly' do
454
592
  expect(change.to_md).to eq(md_str)
455
593
  end
594
+
595
+ it { should_not have_no_detail }
456
596
  end
457
597
 
458
- context 'with task and no DevID given' do
598
+ context 'with task and DevID given' do
459
599
  let(:md_str) { " * Task - lqiwhuweh213 - Line 1\n Line 2\n Line 3" }
460
600
 
461
601
  it 'defaults the branch type to "Task"' do
@@ -469,9 +609,11 @@ describe MrBump::Change do
469
609
  it 'renders to markdown correctly' do
470
610
  expect(change.to_md).to eq(md_str)
471
611
  end
612
+
613
+ it { should_not have_no_detail }
472
614
  end
473
615
 
474
- context 'with bugfix and no DevID given, and no second line' do
616
+ context 'with bugfix and DevID given, and no second line' do
475
617
  let(:md_str) { " * Bugfix - DEV-123 - Line 1" }
476
618
 
477
619
  it 'extracts the correct branch type' do
@@ -485,9 +627,11 @@ describe MrBump::Change do
485
627
  it 'renders to markdown correctly' do
486
628
  expect(change.to_md).to eq(md_str)
487
629
  end
630
+
631
+ it { should_not have_no_detail }
488
632
  end
489
633
 
490
- context 'with feature and no DevID given, and no second line' do
634
+ context 'with feature and DevID given, and no second line' do
491
635
  let(:md_str) { " * Feature - SAMBA-123 - Line 1" }
492
636
 
493
637
  it 'extracts the correct branch type' do
@@ -501,9 +645,11 @@ describe MrBump::Change do
501
645
  it 'renders to markdown correctly' do
502
646
  expect(change.to_md).to eq(md_str)
503
647
  end
648
+
649
+ it { should_not have_no_detail }
504
650
  end
505
651
 
506
- context 'with hotfix and no DevID given, and no second line' do
652
+ context 'with hotfix and DevID given, and no second line' do
507
653
  let(:md_str) { " * Hotfix - asf1 - Line 1" }
508
654
 
509
655
  it 'extracts the correct branch type' do
@@ -517,9 +663,11 @@ describe MrBump::Change do
517
663
  it 'renders to markdown correctly' do
518
664
  expect(change.to_md).to eq(md_str)
519
665
  end
666
+
667
+ it { should_not have_no_detail }
520
668
  end
521
669
 
522
- context 'with task and no DevID given, and no second line' do
670
+ context 'with task and DevID given, and no second line' do
523
671
  let(:md_str) { " * Task - JBAJSDB0123 - Line 1" }
524
672
 
525
673
  it 'defaults the branch type to "Task"' do
@@ -533,6 +681,8 @@ describe MrBump::Change do
533
681
  it 'renders to markdown correctly' do
534
682
  expect(change.to_md).to eq(md_str)
535
683
  end
684
+
685
+ it { should_not have_no_detail }
536
686
  end
537
687
  end
538
688
 
@@ -604,7 +754,7 @@ describe MrBump::Change do
604
754
  let(:change) { described_class.from_gitlog(config, merge_str, []) }
605
755
 
606
756
  it 'renders to markdown correctly' do
607
- expect(change.to_md).to eq(" * Hotfix - DEV-1 - ")
757
+ expect(change.to_md).to eq(' * Hotfix - DEV-1')
608
758
  end
609
759
  end
610
760
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mr_bump
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Fitzgerald
@@ -15,180 +15,180 @@ dependencies:
15
15
  name: slack-notifier
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ~>
18
+ - - "~>"
19
19
  - !ruby/object:Gem::Version
20
20
  version: '1.0'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - "~>"
26
26
  - !ruby/object:Gem::Version
27
27
  version: '1.0'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: octokit
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ! '>='
32
+ - - ">="
33
33
  - !ruby/object:Gem::Version
34
34
  version: '3.0'
35
- - - <=
35
+ - - "<="
36
36
  - !ruby/object:Gem::Version
37
37
  version: '5.0'
38
38
  type: :runtime
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
41
41
  requirements:
42
- - - ! '>='
42
+ - - ">="
43
43
  - !ruby/object:Gem::Version
44
44
  version: '3.0'
45
- - - <=
45
+ - - "<="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '5.0'
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: mustache
50
50
  requirement: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ! '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.99.3
55
- - - <
55
+ - - "<"
56
56
  - !ruby/object:Gem::Version
57
57
  version: '2.0'
58
58
  type: :runtime
59
59
  prerelease: false
60
60
  version_requirements: !ruby/object:Gem::Requirement
61
61
  requirements:
62
- - - ! '>='
62
+ - - ">="
63
63
  - !ruby/object:Gem::Version
64
64
  version: 0.99.3
65
- - - <
65
+ - - "<"
66
66
  - !ruby/object:Gem::Version
67
67
  version: '2.0'
68
68
  - !ruby/object:Gem::Dependency
69
69
  name: OptionParser
70
70
  requirement: !ruby/object:Gem::Requirement
71
71
  requirements:
72
- - - ! '>='
72
+ - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  type: :runtime
76
76
  prerelease: false
77
77
  version_requirements: !ruby/object:Gem::Requirement
78
78
  requirements:
79
- - - ! '>='
79
+ - - ">="
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
82
  - !ruby/object:Gem::Dependency
83
83
  name: rspec
84
84
  requirement: !ruby/object:Gem::Requirement
85
85
  requirements:
86
- - - ! '>='
86
+ - - ">="
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  type: :development
90
90
  prerelease: false
91
91
  version_requirements: !ruby/object:Gem::Requirement
92
92
  requirements:
93
- - - ! '>='
93
+ - - ">="
94
94
  - !ruby/object:Gem::Version
95
95
  version: '0'
96
96
  - !ruby/object:Gem::Dependency
97
97
  name: pry
98
98
  requirement: !ruby/object:Gem::Requirement
99
99
  requirements:
100
- - - ! '>='
100
+ - - ">="
101
101
  - !ruby/object:Gem::Version
102
102
  version: '0'
103
103
  type: :development
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - ! '>='
107
+ - - ">="
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: rb-readline
112
112
  requirement: !ruby/object:Gem::Requirement
113
113
  requirements:
114
- - - ! '>='
114
+ - - ">="
115
115
  - !ruby/object:Gem::Version
116
116
  version: '0'
117
117
  type: :development
118
118
  prerelease: false
119
119
  version_requirements: !ruby/object:Gem::Requirement
120
120
  requirements:
121
- - - ! '>='
121
+ - - ">="
122
122
  - !ruby/object:Gem::Version
123
123
  version: '0'
124
124
  - !ruby/object:Gem::Dependency
125
125
  name: simplecov
126
126
  requirement: !ruby/object:Gem::Requirement
127
127
  requirements:
128
- - - ! '>='
128
+ - - ">="
129
129
  - !ruby/object:Gem::Version
130
130
  version: '0'
131
131
  type: :development
132
132
  prerelease: false
133
133
  version_requirements: !ruby/object:Gem::Requirement
134
134
  requirements:
135
- - - ! '>='
135
+ - - ">="
136
136
  - !ruby/object:Gem::Version
137
137
  version: '0'
138
138
  - !ruby/object:Gem::Dependency
139
139
  name: json
140
140
  requirement: !ruby/object:Gem::Requirement
141
141
  requirements:
142
- - - ~>
142
+ - - "~>"
143
143
  - !ruby/object:Gem::Version
144
144
  version: '1.8'
145
145
  type: :development
146
146
  prerelease: false
147
147
  version_requirements: !ruby/object:Gem::Requirement
148
148
  requirements:
149
- - - ~>
149
+ - - "~>"
150
150
  - !ruby/object:Gem::Version
151
151
  version: '1.8'
152
152
  - !ruby/object:Gem::Dependency
153
153
  name: tins
154
154
  requirement: !ruby/object:Gem::Requirement
155
155
  requirements:
156
- - - ~>
156
+ - - "~>"
157
157
  - !ruby/object:Gem::Version
158
158
  version: 1.6.0
159
159
  type: :development
160
160
  prerelease: false
161
161
  version_requirements: !ruby/object:Gem::Requirement
162
162
  requirements:
163
- - - ~>
163
+ - - "~>"
164
164
  - !ruby/object:Gem::Version
165
165
  version: 1.6.0
166
166
  - !ruby/object:Gem::Dependency
167
167
  name: term-ansicolor
168
168
  requirement: !ruby/object:Gem::Requirement
169
169
  requirements:
170
- - - ~>
170
+ - - "~>"
171
171
  - !ruby/object:Gem::Version
172
172
  version: 1.3.1
173
173
  type: :development
174
174
  prerelease: false
175
175
  version_requirements: !ruby/object:Gem::Requirement
176
176
  requirements:
177
- - - ~>
177
+ - - "~>"
178
178
  - !ruby/object:Gem::Version
179
179
  version: 1.3.1
180
180
  - !ruby/object:Gem::Dependency
181
181
  name: coveralls
182
182
  requirement: !ruby/object:Gem::Requirement
183
183
  requirements:
184
- - - ! '>='
184
+ - - ">="
185
185
  - !ruby/object:Gem::Version
186
186
  version: '0'
187
187
  type: :development
188
188
  prerelease: false
189
189
  version_requirements: !ruby/object:Gem::Requirement
190
190
  requirements:
191
- - - ! '>='
191
+ - - ">="
192
192
  - !ruby/object:Gem::Version
193
193
  version: '0'
194
194
  description: Bump versions
@@ -225,17 +225,17 @@ require_paths:
225
225
  - lib
226
226
  required_ruby_version: !ruby/object:Gem::Requirement
227
227
  requirements:
228
- - - ! '>='
228
+ - - ">="
229
229
  - !ruby/object:Gem::Version
230
230
  version: '0'
231
231
  required_rubygems_version: !ruby/object:Gem::Requirement
232
232
  requirements:
233
- - - ! '>='
233
+ - - ">="
234
234
  - !ruby/object:Gem::Version
235
235
  version: '0'
236
236
  requirements: []
237
237
  rubyforge_project:
238
- rubygems_version: 2.4.8
238
+ rubygems_version: 2.5.2
239
239
  signing_key:
240
240
  specification_version: 3
241
241
  summary: BUMP!