lolcommits-tranzlate 0.1.1 → 0.2.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 +15 -18
- data/CHANGELOG.md +11 -3
- data/README.md +1 -1
- data/lib/lolcommits/plugin/tranzlate.rb +2 -0
- data/lib/lolcommits/tranzlate/lolspeak.rb +2 -0
- data/lib/lolcommits/tranzlate/version.rb +3 -1
- data/lib/lolcommits/tranzlate.rb +2 -0
- data/lolcommits-tranzlate.gemspec +9 -11
- data/test/lolcommits/plugin/tranzlate_test.rb +2 -0
- data/test/test_helper.rb +2 -0
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 34d5c33cdd61ef6e53acf025c25d996f3b01e084acb0d4bfebb89cb2a1beacc7
|
|
4
|
+
data.tar.gz: fa735df130f2ace759e74b2cc225e82d31a971291dcd24fc6d0f25daf030b6df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8da168f3712ec46a1d15a1a854e0891a41233ddf0c5aa1988d48664230c91afb626269dda0fbebd59717fc40a69f0e08ff8d6f54c959f336745df2085bb325bf
|
|
7
|
+
data.tar.gz: 1ca5e5b297f972f1b5778e6d01629031ccd7a771492922f38b91cc1a0806d9253e9c45093ca85e130e80ec6539be7185cd72247c676727489c02c4b896d30ffe
|
data/.travis.yml
CHANGED
|
@@ -2,31 +2,28 @@ sudo: false
|
|
|
2
2
|
language: ruby
|
|
3
3
|
cache: bundler
|
|
4
4
|
rvm:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
-
|
|
10
|
-
- ruby-head
|
|
5
|
+
- 2.3.8
|
|
6
|
+
- 2.4.6
|
|
7
|
+
- 2.5.5
|
|
8
|
+
- 2.6.3
|
|
9
|
+
- ruby-head
|
|
11
10
|
|
|
12
11
|
before_install:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
- git config --global user.email "lol@commits.org"
|
|
17
|
-
- git config --global user.name "Lolcommits"
|
|
12
|
+
- git --version
|
|
13
|
+
- git config --global user.email "lol@commits.org"
|
|
14
|
+
- git config --global user.name "Lolcommits"
|
|
18
15
|
|
|
19
16
|
matrix:
|
|
20
17
|
allow_failures:
|
|
21
|
-
|
|
18
|
+
- rvm: ruby-head
|
|
22
19
|
|
|
23
20
|
env:
|
|
24
21
|
global:
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
- CC_TEST_REPORTER_ID=859471f6845eabf56f67985a6a23ab853f9c15e80c22268c3b1562bd67674043
|
|
23
|
+
- GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
|
|
27
24
|
before_script:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
25
|
+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
26
|
+
- chmod +x ./cc-test-reporter
|
|
27
|
+
- ./cc-test-reporter before-build - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
|
|
31
28
|
after_script:
|
|
32
|
-
|
|
29
|
+
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
data/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
The format is based on [Keep a Changelog]
|
|
6
|
-
adheres to [Semantic Versioning]
|
|
5
|
+
The format is based on [Keep a Changelog][KeepAChangelog] and this project
|
|
6
|
+
adheres to [Semantic Versioning][Semver].
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
10
|
- Your contribution here!
|
|
11
11
|
|
|
12
|
+
## [0.2.0] - 2019-04-24
|
|
13
|
+
### Removed
|
|
14
|
+
- Support for Ruby < 2.3 (older rubies no longer supported)
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- `frozen_string_literal: true` to all ruby files
|
|
18
|
+
|
|
12
19
|
## [0.1.1] - 2018-05-24
|
|
13
20
|
### Changed
|
|
14
21
|
- Updated gemspec meta data links.
|
|
@@ -53,7 +60,8 @@ adheres to [Semantic Versioning](Semver).
|
|
|
53
60
|
### Changed
|
|
54
61
|
- Initial release
|
|
55
62
|
|
|
56
|
-
[Unreleased]: https://github.com/lolcommits/lolcommits-tranzlate/compare/v0.
|
|
63
|
+
[Unreleased]: https://github.com/lolcommits/lolcommits-tranzlate/compare/v0.2.0...HEAD
|
|
64
|
+
[0.2.0]: https://github.com/lolcommits/lolcommits-tranzlate/compare/v0.1.1...v0.2.0
|
|
57
65
|
[0.1.1]: https://github.com/lolcommits/lolcommits-tranzlate/compare/v0.1.0...v0.1.1
|
|
58
66
|
[0.1.0]: https://github.com/lolcommits/lolcommits-tranzlate/compare/v0.0.7...v0.1.0
|
|
59
67
|
[0.0.7]: https://github.com/lolcommits/lolcommits-tranzlate/compare/v0.0.6...v0.0.7
|
data/README.md
CHANGED
|
@@ -19,7 +19,7 @@ commit](https://github.com/lolcommits/lolcommits-tranzlate/raw/master/assets/ima
|
|
|
19
19
|
|
|
20
20
|
## Requirements
|
|
21
21
|
|
|
22
|
-
* Ruby >= 2.
|
|
22
|
+
* Ruby >= 2.3
|
|
23
23
|
* A webcam
|
|
24
24
|
* [ImageMagick](http://www.imagemagick.org)
|
|
25
25
|
* [ffmpeg](https://www.ffmpeg.org) (optional) for animated gif capturing
|
data/lib/lolcommits/tranzlate.rb
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
1
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
3
|
require 'lolcommits/tranzlate/version'
|
|
5
4
|
|
|
6
5
|
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name
|
|
8
|
-
spec.version
|
|
9
|
-
spec.authors
|
|
10
|
-
spec.email
|
|
11
|
-
spec.summary
|
|
12
|
-
spec.
|
|
13
|
-
|
|
14
|
-
spec.
|
|
15
|
-
spec.license = "LGPL-3"
|
|
6
|
+
spec.name = "lolcommits-tranzlate"
|
|
7
|
+
spec.version = Lolcommits::Tranzlate::VERSION
|
|
8
|
+
spec.authors = ["Matthew Hutchinson"]
|
|
9
|
+
spec.email = ["matt@hiddenloop.com"]
|
|
10
|
+
spec.summary = %q{lolcommits lolspekk tranzlation plugin}
|
|
11
|
+
spec.homepage = "https://github.com/lolcommits/lolcommits-tranzlate"
|
|
12
|
+
spec.license = "LGPL-3"
|
|
13
|
+
spec.description = %q{TRANZLATE YOAR LOLCOMMIT MSG TO LOLSPEKK}
|
|
16
14
|
|
|
17
15
|
spec.metadata = {
|
|
18
16
|
"homepage_uri" => "https://github.com/lolcommits/lolcommits-tranzlate",
|
|
@@ -36,7 +34,7 @@ Gem::Specification.new do |spec|
|
|
|
36
34
|
spec.executables = []
|
|
37
35
|
spec.require_paths = ["lib"]
|
|
38
36
|
|
|
39
|
-
spec.required_ruby_version = ">= 2.
|
|
37
|
+
spec.required_ruby_version = ">= 2.3"
|
|
40
38
|
|
|
41
39
|
spec.add_development_dependency "lolcommits", ">= 0.12.0"
|
|
42
40
|
spec.add_development_dependency "bundler"
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lolcommits-tranzlate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.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: 2019-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: lolcommits
|
|
@@ -124,15 +124,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
124
124
|
requirements:
|
|
125
125
|
- - ">="
|
|
126
126
|
- !ruby/object:Gem::Version
|
|
127
|
-
version: '2.
|
|
127
|
+
version: '2.3'
|
|
128
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
129
129
|
requirements:
|
|
130
130
|
- - ">="
|
|
131
131
|
- !ruby/object:Gem::Version
|
|
132
132
|
version: '0'
|
|
133
133
|
requirements: []
|
|
134
|
-
|
|
135
|
-
rubygems_version: 2.7.6
|
|
134
|
+
rubygems_version: 3.0.3
|
|
136
135
|
signing_key:
|
|
137
136
|
specification_version: 4
|
|
138
137
|
summary: lolcommits lolspekk tranzlation plugin
|