lolcommits-term_output 0.3.0 → 0.4.0

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,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ae550e3afc8a28f05357eb39bc55721eee09ecac0712d39ea291d93105e6d44
4
- data.tar.gz: ae046fb5b4e7fc06dd0473a24482ba7d9a0a3617e45c95977ea34dff5b1d55ee
3
+ metadata.gz: 4b8a17ac462d1361f72a7a5ba9df016bc956ce5b485f79a21b7ebbe217af9823
4
+ data.tar.gz: ba2cceef9dd8da7129f01634a9f34a1688b13ea9cb47ad2bd57a97a3fa09e0a1
5
5
  SHA512:
6
- metadata.gz: 7ffe0d92834700718178a23131a6fe326ca3643ea3251fb199477571cb4fb6c8a68959b458e5048eab85e36aac410efbeb6fdebff17bfed05311356e8e975906
7
- data.tar.gz: 12c7c95e7a8979975a4b12406a8f16c8a2b35fc7dc42d8f3ef16c902e7f9fc5ddf7a8a9b1ad69cf3fbea364dfcca8e744767b2faa87240888c6d6b271d47ab33
6
+ metadata.gz: b3bd86eddbe73db77882cf1d5b802c362e2f31d9e2270f7467ae33ae2d30158232c03d3e7fd0864442f3e29c1178ed3d91e7643514f52e8210a008fa92411f00
7
+ data.tar.gz: c584556ab5a7121b13e9eb8a7045d8aa84787e3ee30ad2aa58ac291f57b2b748b6ec81dceb21655fa156ce7d0af962bda49e72aef419226d143c01af15e14bc1
@@ -2,10 +2,10 @@ sudo: false
2
2
  language: ruby
3
3
  cache: bundler
4
4
  rvm:
5
- - 2.3.8
6
- - 2.4.6
7
- - 2.5.5
8
- - 2.6.3
5
+ - 2.4.9
6
+ - 2.5.7
7
+ - 2.6.5
8
+ - 2.7.0
9
9
  - ruby-head
10
10
 
11
11
  before_install:
@@ -9,6 +9,10 @@ project adheres to [Semantic Versioning][Semver].
9
9
 
10
10
  - Your contribution here!
11
11
 
12
+ ## [0.4.0] - 2020-01-24
13
+ ### Removed
14
+ - Support for Ruby < 2.4 (older rubies no longer supported)
15
+
12
16
  ## [0.3.0] - 2019-05-20
13
17
  ### Changed
14
18
  - lolcommits gem is a runtime dependency
@@ -60,7 +64,8 @@ project adheres to [Semantic Versioning][Semver].
60
64
  ### Changed
61
65
  - Initial release
62
66
 
63
- [Unreleased]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.3.0...HEAD
67
+ [Unreleased]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.4.0...HEAD
68
+ [0.4.0]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.3.0...v0.4.0
64
69
  [0.3.0]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.2.0...v0.3.0
65
70
  [0.2.0]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.1.1...v0.2.0
66
71
  [0.1.1]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.1.0...v0.1.1
data/README.md CHANGED
@@ -19,7 +19,7 @@ only) in your terminal (after committing). For example:
19
19
 
20
20
  ## Requirements
21
21
 
22
- * Ruby >= 2.3
22
+ * Ruby >= 2.4
23
23
  * A webcam
24
24
  * [iTerm2](http://iterm2.com/index.html)
25
25
  * [ImageMagick](http://www.imagemagick.org)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Lolcommits
4
4
  module TermOutput
5
- VERSION = "0.3.0".freeze
5
+ VERSION = "0.4.0".freeze
6
6
  end
7
7
  end
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
26
26
  spec.executables = []
27
27
  spec.require_paths = ["lib"]
28
28
 
29
- spec.required_ruby_version = ">= 2.3"
29
+ spec.required_ruby_version = ">= 2.4"
30
30
 
31
31
  spec.add_runtime_dependency "lolcommits", ">= 0.14.2"
32
32
 
@@ -38,12 +38,12 @@ describe Lolcommits::Plugin::TermOutput do
38
38
 
39
39
  describe "#enabled?" do
40
40
  it "is false by default" do
41
- plugin.enabled?.must_equal false
41
+ _(plugin.enabled?).must_equal false
42
42
  end
43
43
 
44
44
  it "is true when configured" do
45
45
  plugin.configuration = valid_enabled_config
46
- plugin.enabled?.must_equal true
46
+ _(plugin.enabled?).must_equal true
47
47
  end
48
48
  end
49
49
 
@@ -55,7 +55,7 @@ describe Lolcommits::Plugin::TermOutput do
55
55
  in_repo do
56
56
  plugin.configuration = valid_enabled_config
57
57
  output = fake_io_capture { plugin.run_capture_ready }
58
- output.must_match matching_regex
58
+ _(output).must_match matching_regex
59
59
  end
60
60
  end
61
61
 
@@ -93,7 +93,7 @@ describe Lolcommits::Plugin::TermOutput do
93
93
  configured_plugin_options = plugin.configure_options!
94
94
  end
95
95
 
96
- configured_plugin_options.must_equal({ enabled: true })
96
+ _(configured_plugin_options).must_equal({ enabled: true })
97
97
  end
98
98
 
99
99
  describe "when terminal not supported" do
@@ -110,7 +110,7 @@ describe Lolcommits::Plugin::TermOutput do
110
110
  end
111
111
 
112
112
  assert_equal configured_plugin_options, {}
113
- output.must_match(/Sorry, this terminal does not support this plugin/)
113
+ _(output).must_match(/Sorry, this terminal does not support this plugin/)
114
114
  end
115
115
  end
116
116
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lolcommits-term_output
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Hutchinson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-20 00:00:00.000000000 Z
11
+ date: 2020-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lolcommits
@@ -137,14 +137,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
137
137
  requirements:
138
138
  - - ">="
139
139
  - !ruby/object:Gem::Version
140
- version: '2.3'
140
+ version: '2.4'
141
141
  required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - ">="
144
144
  - !ruby/object:Gem::Version
145
145
  version: '0'
146
146
  requirements: []
147
- rubygems_version: 3.0.3
147
+ rubygems_version: 3.1.2
148
148
  signing_key:
149
149
  specification_version: 4
150
150
  summary: Display lolcommits within your iTerm terminal