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 +4 -4
- data/.travis.yml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +1 -1
- data/lib/lolcommits/term_output/version.rb +1 -1
- data/lolcommits-term_output.gemspec +1 -1
- data/test/lolcommits/plugin/term_output_test.rb +5 -5
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b8a17ac462d1361f72a7a5ba9df016bc956ce5b485f79a21b7ebbe217af9823
|
|
4
|
+
data.tar.gz: ba2cceef9dd8da7129f01634a9f34a1688b13ea9cb47ad2bd57a97a3fa09e0a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3bd86eddbe73db77882cf1d5b802c362e2f31d9e2270f7467ae33ae2d30158232c03d3e7fd0864442f3e29c1178ed3d91e7643514f52e8210a008fa92411f00
|
|
7
|
+
data.tar.gz: c584556ab5a7121b13e9eb8a7045d8aa84787e3ee30ad2aa58ac291f57b2b748b6ec81dceb21655fa156ce7d0af962bda49e72aef419226d143c01af15e14bc1
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -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.
|
|
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
|
@@ -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
|
|
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
|
|
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.
|
|
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:
|
|
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.
|
|
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.
|
|
147
|
+
rubygems_version: 3.1.2
|
|
148
148
|
signing_key:
|
|
149
149
|
specification_version: 4
|
|
150
150
|
summary: Display lolcommits within your iTerm terminal
|