lolcommits-sample_plugin 0.1.2 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 24c6dc2e0a154db91786916f5e0d4d47405f72c144953015d37aecca57645e9e
4
- data.tar.gz: 98d996979d2cdcc04323f9283a4d373bccb1467948de2f049b5d6532be835c67
3
+ metadata.gz: b2240a3cc5eff66ada1df888b78b327f366313c2cfa2a82adc945a4ed9e44835
4
+ data.tar.gz: c49f0c29e04c6b73723cfcd251e287b57876fe3d7faf9bfd38fcf7fc3263aa5b
5
5
  SHA512:
6
- metadata.gz: 23d53d1a76f216dbf54fce87a52e876a910671a594a3c2a6bec91c166f3be34ab0b1daa7f50701835c51007d87bb63ec061dbb0c5cebf5af9c5491f80d44fced
7
- data.tar.gz: f8cc1a5bd31139f12d2935a35dbf0ff829b9779b81efdc25ebb93aebb5eaff005f0a228d18fd624444a356045fcd3bf0fba7cdca9e339c4df45599e57f819cae
6
+ metadata.gz: 0d104a5c43cc41e43c476a2d3f66a2a531a2eab99f68cb81e8fd12a5085e3c13900d075c860890be4b1f3100f2f92440caf6d3bf0963a9afc251185e90c6af69
7
+ data.tar.gz: 295f1da4d82dfb600994e0fb74490ad82c12c6ae00bd9572e6eb297f5908ad9e4800093c3bb8a662baae97609a94d6e9f171eff82d654c3953ff7c33f1866304
data/.travis.yml CHANGED
@@ -2,19 +2,16 @@ 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:
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.2] - 2018-05-24
13
20
  ### Changed
14
21
  - CHANGELOG updated and tags fixed
@@ -39,7 +46,8 @@ adheres to [Semantic Versioning](Semver).
39
46
  ### Changed
40
47
  - Initial release
41
48
 
42
- [Unreleased]: https://github.com/lolcommits/lolcommits-sample_plugin/compare/v0.1.2...HEAD
49
+ [Unreleased]: https://github.com/lolcommits/lolcommits-sample_plugin/compare/v0.2.0...HEAD
50
+ [0.2.0]: https://github.com/lolcommits/lolcommits-sample_plugin/compare/v0.1.2...v0.2.0
43
51
  [0.1.2]: https://github.com/lolcommits/lolcommits-sample_plugin/compare/v0.1.1...v0.1.2
44
52
  [0.1.1]: https://github.com/lolcommits/lolcommits-sample_plugin/compare/v0.1.0...v0.1.1
45
53
  [0.1.0]: https://github.com/lolcommits/lolcommits-sample_plugin/compare/v0.0.3...v0.1.0
data/README.md CHANGED
@@ -191,7 +191,7 @@ plugins](https://github.com/lolcommits).
191
191
 
192
192
  ## Requirements
193
193
 
194
- * Ruby >= 2.0.0
194
+ * Ruby >= 2.3
195
195
  * A webcam
196
196
  * [ImageMagick](http://www.imagemagick.org)
197
197
  * [ffmpeg](https://www.ffmpeg.org) (optional) for animated gif capturing
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'lolcommits/plugin/base'
2
4
 
3
5
  module Lolcommits
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'lolcommits/sample_plugin/version'
2
4
  require 'lolcommits/plugin/sample_plugin'
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Lolcommits
2
4
  module SamplePlugin
3
- VERSION = "0.1.2".freeze
5
+ VERSION = "0.2.0".freeze
4
6
  end
5
7
  end
@@ -1,19 +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/sample_plugin/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
- spec.name = "lolcommits-sample_plugin"
8
- spec.version = Lolcommits::SamplePlugin::VERSION
9
- spec.authors = ["Matthew Hutchinson"]
10
- spec.email = ["matt@hiddenloop.com"]
11
-
12
- spec.summary = %q{Example gem for lolcommits plugin development}
13
- spec.description = %q{Use this gem as a guide or template to get started with lolcommits plugin development}
14
-
15
- spec.homepage = "https://github.com/lolcommits/lolcommits-sample_plugin"
16
- spec.license = "LGPL-3"
6
+ spec.name = "lolcommits-sample_plugin"
7
+ spec.version = Lolcommits::SamplePlugin::VERSION
8
+ spec.authors = ["Matthew Hutchinson"]
9
+ spec.email = ["matt@hiddenloop.com"]
10
+ spec.summary = %q{Example gem for lolcommits plugin development}
11
+ spec.homepage = "https://github.com/lolcommits/lolcommits-sample_plugin"
12
+ spec.license = "LGPL-3"
13
+ spec.description = %q{Use this gem as a guide or template to get started with lolcommits plugin development}
17
14
 
18
15
  spec.metadata = {
19
16
  "homepage_uri" => "https://github.com/lolcommits/lolcommits-sample_plugin",
@@ -37,7 +34,7 @@ Gem::Specification.new do |spec|
37
34
  spec.executables = []
38
35
  spec.require_paths = ["lib"]
39
36
 
40
- spec.required_ruby_version = ">= 2.1"
37
+ spec.required_ruby_version = ">= 2.3"
41
38
 
42
39
  spec.add_development_dependency "lolcommits", ">= 0.12.0"
43
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::SamplePlugin 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-sample_plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
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
@@ -138,15 +138,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
138
138
  requirements:
139
139
  - - ">="
140
140
  - !ruby/object:Gem::Version
141
- version: '2.1'
141
+ version: '2.3'
142
142
  required_rubygems_version: !ruby/object:Gem::Requirement
143
143
  requirements:
144
144
  - - ">="
145
145
  - !ruby/object:Gem::Version
146
146
  version: '0'
147
147
  requirements: []
148
- rubyforge_project:
149
- rubygems_version: 2.7.6
148
+ rubygems_version: 3.0.3
150
149
  signing_key:
151
150
  specification_version: 4
152
151
  summary: Example gem for lolcommits plugin development