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 +4 -4
- data/.travis.yml +8 -11
- data/CHANGELOG.md +11 -3
- data/README.md +1 -1
- data/lib/lolcommits/plugin/sample_plugin.rb +2 -0
- data/lib/lolcommits/sample_plugin.rb +2 -0
- data/lib/lolcommits/sample_plugin/version.rb +3 -1
- data/lolcommits-plugin-sample.gemspec +9 -12
- data/test/lolcommits/plugin/sample_plugin_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: b2240a3cc5eff66ada1df888b78b327f366313c2cfa2a82adc945a4ed9e44835
|
|
4
|
+
data.tar.gz: c49f0c29e04c6b73723cfcd251e287b57876fe3d7faf9bfd38fcf7fc3263aa5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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:
|
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.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.
|
|
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
|
@@ -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
|
|
8
|
-
spec.version
|
|
9
|
-
spec.authors
|
|
10
|
-
spec.email
|
|
11
|
-
|
|
12
|
-
spec.
|
|
13
|
-
spec.
|
|
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.
|
|
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"
|
data/test/test_helper.rb
CHANGED
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.
|
|
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
|
|
@@ -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.
|
|
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
|
-
|
|
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
|