lolcommits-term_output 0.1.1 → 0.2.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: a295aeec35ec68866ea46905d65bb8d803cd2818bdc748f7948b07404e51f41c
4
- data.tar.gz: 8b02e5a1ed87346c4a7091c291eda676f591998c86ba806c0584085ddb849d1c
3
+ metadata.gz: 2379fcb9aa1d9303fffe4b571cf638ce5707b7b937f7d5b64be6c08f4a7b128a
4
+ data.tar.gz: 4d971d9e7ef33bc4a111f3c0b13794a71ad8fdb9590bed4c4719adacd811376b
5
5
  SHA512:
6
- metadata.gz: 0c3e722eb877f2d841a4b687e670025da33fe4d9e653b65ebaaaa4467283194d74d34a9f34fad64038280fbabf081665db86e734dbcc360cea3339b950eb656f
7
- data.tar.gz: f0c9603e72f7a50392b90a810eb843e09a4ed9159136cfb21ee9ce4349e5ef2adfff1c74f4b3ebdc01ec51736e2264a1bdd85323f82b540b7a7c91202d7f3c4e
6
+ metadata.gz: 25a1254cf0c9bb81cc701c631596fe80e33de7254c8c9d1d5622edfc7a5ac71b86ee1eb57952d3f5ba0423043da038ba64e0bbf014661a0138381ad41b67070e
7
+ data.tar.gz: 1ba47cca44f55cca6ed659ff97d78b1a4d8645236d9a7aeba0b19e5d7530f63ae8b0accaa560f6443fb993519d62cb05b8a2aaac3bfc7ca9dd03c65a5d73ffb7
data/.travis.yml CHANGED
@@ -2,31 +2,28 @@ sudo: false
2
2
  language: ruby
3
3
  cache: bundler
4
4
  rvm:
5
- - 2.1.10
6
- - 2.2.9
7
- - 2.3.6
8
- - 2.4.3
9
- - 2.5.1
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
- - gem update --system
14
- - gem install bundler
15
- - git --version
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
- - rvm: ruby-head
18
+ - rvm: ruby-head
22
19
 
23
20
  env:
24
21
  global:
25
- - CC_TEST_REPORTER_ID=eb8c60bf77e0ed78453285e1d9c0aa4c9c248a4945f077615edb042db7753fb9
26
- - 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)
22
+ - CC_TEST_REPORTER_ID=eb8c60bf77e0ed78453285e1d9c0aa4c9c248a4945f077615edb042db7753fb9
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
- - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
29
- - chmod +x ./cc-test-reporter
30
- - ./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)
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
- - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
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](KeepAChangelog) and this project
6
- adheres to [Semantic Versioning](Semver).
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.
@@ -43,7 +50,8 @@ adheres to [Semantic Versioning](Semver).
43
50
  ### Changed
44
51
  - Initial release
45
52
 
46
- [Unreleased]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.1.1...HEAD
53
+ [Unreleased]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.2.0...HEAD
54
+ [0.2.0]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.1.1...v0.2.0
47
55
  [0.1.1]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.1.0...v0.1.1
48
56
  [0.1.0]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.0.6...v0.1.0
49
57
  [0.0.6]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.0.5...v0.0.6
data/README.md CHANGED
@@ -18,7 +18,7 @@ lolcommit image in your terminal (after committing). For example:
18
18
 
19
19
  ## Requirements
20
20
 
21
- * Ruby >= 2.0.0
21
+ * Ruby >= 2.3
22
22
  * A webcam
23
23
  * [iTerm2](http://iterm2.com/index.html)
24
24
  * [ImageMagick](http://www.imagemagick.org)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'base64'
2
4
  require 'lolcommits/plugin/base'
3
5
 
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Lolcommits
2
4
  module TermOutput
3
- VERSION = "0.1.1".freeze
5
+ VERSION = "0.2.0".freeze
4
6
  end
5
7
  end
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'lolcommits/term_output/version'
2
4
  require 'lolcommits/plugin/term_output'
@@ -1,17 +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/term_output/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
- spec.name = "lolcommits-term_output"
8
- spec.version = Lolcommits::TermOutput::VERSION
9
- spec.authors = ["Matthew Hutchinson"]
10
- spec.email = ["matt@hiddenloop.com"]
11
- spec.summary = "Display lolcommits within your iTerm terminal"
12
- spec.description = "Display lolcommits within your iTerm terminal"
13
- spec.homepage = "https://github.com/lolcommits/lolcommits-term_output"
14
- spec.license = "LGPL-3"
6
+ spec.name = "lolcommits-term_output"
7
+ spec.version = Lolcommits::TermOutput::VERSION
8
+ spec.authors = ["Matthew Hutchinson"]
9
+ spec.email = ["matt@hiddenloop.com"]
10
+ spec.summary = "Display lolcommits within your iTerm terminal"
11
+ spec.homepage = "https://github.com/lolcommits/lolcommits-term_output"
12
+ spec.license = "LGPL-3"
13
+ spec.description = "Display lolcommits within your iTerm terminal"
15
14
 
16
15
  spec.metadata = {
17
16
  "homepage_uri" => "https://github.com/lolcommits/lolcommits-term_output",
@@ -35,7 +34,7 @@ Gem::Specification.new do |spec|
35
34
  spec.executables = []
36
35
  spec.require_paths = ["lib"]
37
36
 
38
- spec.required_ruby_version = ">= 2.1"
37
+ spec.required_ruby_version = ">= 2.3"
39
38
 
40
39
  spec.add_development_dependency "lolcommits", ">= 0.12.0"
41
40
  spec.add_development_dependency "bundler"
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "test_helper"
2
4
 
3
5
  describe Lolcommits::Plugin::TermOutput do
data/test/test_helper.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
4
 
3
5
  # lolcommits gem
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.1.1
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: 2018-05-24 00:00:00.000000000 Z
11
+ date: 2019-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lolcommits
@@ -137,15 +137,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
137
137
  requirements:
138
138
  - - ">="
139
139
  - !ruby/object:Gem::Version
140
- version: '2.1'
140
+ version: '2.3'
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
- rubyforge_project:
148
- rubygems_version: 2.7.6
147
+ rubygems_version: 3.0.3
149
148
  signing_key:
150
149
  specification_version: 4
151
150
  summary: Display lolcommits within your iTerm terminal