lolcommits-protonet 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 +8 -11
- data/CHANGELOG.md +11 -3
- data/README.md +1 -1
- data/lib/lolcommits/plugin/protonet.rb +2 -0
- data/lib/lolcommits/protonet.rb +2 -0
- data/lib/lolcommits/protonet/version.rb +3 -1
- data/lolcommits-protonet.gemspec +11 -13
- data/test/lolcommits/plugin/protonet_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: 8e4afc3a3e7ea1bf3c6b5fa8a9f19cc5e2d331bdcfea35d11a52ac45aa2346a6
|
4
|
+
data.tar.gz: 31f8352492dce2d944089d87bec27afa7261e5c43c12024aa398387f7d4ee805
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88642dac7091b5b421092713ac52dcf0837e7cdbb84db783ed34ea1ae217dd68d9614daa0400eb70a0b830ad97d4e208f963bcb39e0a94aedd2c8b3793c3c9ec
|
7
|
+
data.tar.gz: 611aac190e31bfbc8c19a9b39f788a1b09a83b28f13358012d53e64adadede60acf85c1f707fa38d91e3832c8a9d39bd5563ab77cabc72f89d82d5d1975f2447
|
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.1] - 2018-05-24
|
13
20
|
### Changed
|
14
21
|
- Updated gemspec meta data links.
|
@@ -42,7 +49,8 @@ adheres to [Semantic Versioning](Semver).
|
|
42
49
|
### Changed
|
43
50
|
- Initial release
|
44
51
|
|
45
|
-
[Unreleased]: https://github.com/lolcommits/lolcommits-protonet/compare/v0.
|
52
|
+
[Unreleased]: https://github.com/lolcommits/lolcommits-protonet/compare/v0.2.0...HEAD
|
53
|
+
[0.2.0]: https://github.com/lolcommits/lolcommits-protonet/compare/v0.1.1...v0.2.0
|
46
54
|
[0.1.1]: https://github.com/lolcommits/lolcommits-protonet/compare/v0.1.0...v0.1.1
|
47
55
|
[0.1.0]: https://github.com/lolcommits/lolcommits-protonet/compare/v0.0.4...v0.1.0
|
48
56
|
[0.0.4]: https://github.com/lolcommits/lolcommits-protonet/compare/v0.0.3...v0.0.4
|
data/README.md
CHANGED
data/lib/lolcommits/protonet.rb
CHANGED
data/lolcommits-protonet.gemspec
CHANGED
@@ -1,21 +1,19 @@
|
|
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/protonet/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
|
-
|
13
|
-
spec.
|
6
|
+
spec.name = "lolcommits-protonet"
|
7
|
+
spec.version = Lolcommits::Protonet::VERSION
|
8
|
+
spec.authors = ["Matthew Hutchinson"]
|
9
|
+
spec.email = ["matt@hiddenloop.com"]
|
10
|
+
spec.summary = %q{Posts lolcommits to a Protonet box}
|
11
|
+
spec.homepage = "https://github.com/lolcommits/lolcommits-protonet"
|
12
|
+
spec.license = "LGPL-3"
|
13
|
+
|
14
|
+
spec.description = <<-DESC
|
14
15
|
Automatically post lolcommit images (with a message) to your Protonet box.
|
15
|
-
|
16
|
-
|
17
|
-
spec.homepage = "https://github.com/lolcommits/lolcommits-protonet"
|
18
|
-
spec.license = "LGPL-3"
|
16
|
+
DESC
|
19
17
|
|
20
18
|
spec.metadata = {
|
21
19
|
"homepage_uri" => "https://github.com/lolcommits/lolcommits-protonet",
|
@@ -39,7 +37,7 @@ Gem::Specification.new do |spec|
|
|
39
37
|
spec.executables = []
|
40
38
|
spec.require_paths = ["lib"]
|
41
39
|
|
42
|
-
spec.required_ruby_version = ">= 2.
|
40
|
+
spec.required_ruby_version = ">= 2.3"
|
43
41
|
|
44
42
|
spec.add_runtime_dependency "rest-client"
|
45
43
|
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lolcommits-protonet
|
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: rest-client
|
@@ -166,15 +166,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
166
166
|
requirements:
|
167
167
|
- - ">="
|
168
168
|
- !ruby/object:Gem::Version
|
169
|
-
version: '2.
|
169
|
+
version: '2.3'
|
170
170
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
171
171
|
requirements:
|
172
172
|
- - ">="
|
173
173
|
- !ruby/object:Gem::Version
|
174
174
|
version: '0'
|
175
175
|
requirements: []
|
176
|
-
|
177
|
-
rubygems_version: 2.7.6
|
176
|
+
rubygems_version: 3.0.3
|
178
177
|
signing_key:
|
179
178
|
specification_version: 4
|
180
179
|
summary: Posts lolcommits to a Protonet box
|