lolcommits 0.14.2 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 16f8ee842e1fb0b89366ab21a9bb7fee2b1037bc91c7151523cdd46ef845e336
4
- data.tar.gz: 4c36bc2a328c5d8148dc18ecc3e71d884eb6a699338436582d6629a436c84c5c
3
+ metadata.gz: f4f33742b052d7ef499ed1ebd967fec77ebbe4e52a76eca2675e2f540ee2b115
4
+ data.tar.gz: 958254d97dcf9a965bb8e57a8c651ddbc766ebf240ad51f0e542bd24efd97251
5
5
  SHA512:
6
- metadata.gz: c6837fb261cbcd4c8e564f77feca38071fe2000da248e19e41f42c5977d6f48e3a2a0b55e4c662021da356fbd4754baedb1310dcbf0d3302145c54211c5303dc
7
- data.tar.gz: 544737259040438ae5416f60b0c6b1139e87b1fb0d421b87315650c418fda5069958c4a993a610ba064ecaf528100c759a42f45a23c7621bcd2675042577fe21
6
+ metadata.gz: 480d203c87991f45be26489355729b8ff5073ffc6b248061e2e717515c2c868ccab3bc808aa3b8d36646eac78f4a76b64f6a64354d63d970da1a8dc49d1ac6da
7
+ data.tar.gz: 86ae68a15665cd07ee7163e519ea8b6c17e57a1e70ac55c82d34d69128cc32177439688121e42ae5460cfeebdbecb14575dd579c135ddcbd6463451265b17940
data/.gitignore CHANGED
@@ -12,3 +12,4 @@ tmp
12
12
  *.swp
13
13
  *.swo
14
14
  vendor/bundle
15
+ cc-test-reporter
data/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ This project adheres to [Semantic Versioning][Semver].
7
7
 
8
8
  * Your contribution here!
9
9
 
10
+ ## [0.15.0][] (20 May 2019)
11
+ * require at least lolcommits-loltext `>= 0.3.0` (@matthutchinson)
12
+ * remove `main_image` method, plugins should use `lolcommit_path` on
13
+ `runner` object (@matthutchinson)
14
+
10
15
  ## [0.14.2][] (19 May 2019)
11
16
  * minor runner improvements, `capture_image?` now public
12
17
  (@matthutchinson)
@@ -358,7 +363,8 @@ This project adheres to [Semantic Versioning][Semver].
358
363
  reliable to not glitch.)
359
364
 
360
365
  [Semver]: http://semver.org
361
- [Unreleased]: https://github.com/lolcommits/lolcommits/compare/v0.14.2...HEAD
366
+ [Unreleased]: https://github.com/lolcommits/lolcommits/compare/v0.15.0...HEAD
367
+ [0.15.0]: https://github.com/lolcommits/lolcommits/compare/v0.14.1...v0.15.0
362
368
  [0.14.2]: https://github.com/lolcommits/lolcommits/compare/v0.14.1...v0.14.2
363
369
  [0.14.1]: https://github.com/lolcommits/lolcommits/compare/v0.14.0...v0.14.1
364
370
  [0.14.0]: https://github.com/lolcommits/lolcommits/compare/v0.13.1...v0.14.0
@@ -76,12 +76,6 @@ module Lolcommits
76
76
  end
77
77
  end
78
78
 
79
- # backward compatibility with earlier plugin releases
80
- # remove this when all plugins target 0.14+
81
- def main_image
82
- capture_gif ? lolcommit_gif_path : lolcommit_path
83
- end
84
-
85
79
  def capture_image?
86
80
  capture_duration.to_i.zero?
87
81
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Lolcommits
4
- VERSION = '0.14.2'
4
+ VERSION = '0.15.0'
5
5
  GEM_NAME = 'lolcommits'
6
6
  end
data/lolcommits.gemspec CHANGED
@@ -46,7 +46,7 @@ Gem::Specification.new do |s|
46
46
  s.add_runtime_dependency('git', '~> 1.5.0')
47
47
 
48
48
  # included plugins
49
- s.add_runtime_dependency('lolcommits-loltext', '~> 0.2.3')
49
+ s.add_runtime_dependency('lolcommits-loltext', '~> 0.3.0')
50
50
 
51
51
  # development & test gems
52
52
  s.add_development_dependency('aruba')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lolcommits
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.2
4
+ version: 0.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Rothenberg
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-05-19 00:00:00.000000000 Z
12
+ date: 2019-05-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: methadone
@@ -101,14 +101,14 @@ dependencies:
101
101
  requirements:
102
102
  - - "~>"
103
103
  - !ruby/object:Gem::Version
104
- version: 0.2.3
104
+ version: 0.3.0
105
105
  type: :runtime
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
109
  - - "~>"
110
110
  - !ruby/object:Gem::Version
111
- version: 0.2.3
111
+ version: 0.3.0
112
112
  - !ruby/object:Gem::Dependency
113
113
  name: aruba
114
114
  requirement: !ruby/object:Gem::Requirement