lolcommits-protonet 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: d8f6b8f0b95dad69c01d46ada861295e6adee97f1e93df1a57ce9c00c277f237
4
- data.tar.gz: 07e1f4e95f0d02278d3ce29f57e916b2a094246ed1a23ac6c035810114c66385
3
+ metadata.gz: 8e4afc3a3e7ea1bf3c6b5fa8a9f19cc5e2d331bdcfea35d11a52ac45aa2346a6
4
+ data.tar.gz: 31f8352492dce2d944089d87bec27afa7261e5c43c12024aa398387f7d4ee805
5
5
  SHA512:
6
- metadata.gz: '083dcbbae594bb304cc3a66f06514e30c855d8304c2da4bafd38aa7cfabbf887b9a6844553ef54820f29d11b812551e86fbbfa5b65061f8f660bd8bb3677682e'
7
- data.tar.gz: 20cc60224771948f91b51e2cd861e7e4ec3ac5e6abce13b6d6112f052c6e0a09dd663c07fac6c272591836fce0d73361588b3f15eafb486391df991f3992d6b6
6
+ metadata.gz: 88642dac7091b5b421092713ac52dcf0837e7cdbb84db783ed34ea1ae217dd68d9614daa0400eb70a0b830ad97d4e208f963bcb39e0a94aedd2c8b3793c3c9ec
7
+ data.tar.gz: 611aac190e31bfbc8c19a9b39f788a1b09a83b28f13358012d53e64adadede60acf85c1f707fa38d91e3832c8a9d39bd5563ab77cabc72f89d82d5d1975f2447
@@ -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:
@@ -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.
@@ -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.1.1...HEAD
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
@@ -19,7 +19,7 @@ REST API" to get an API token.
19
19
 
20
20
  ## Requirements
21
21
 
22
- * Ruby >= 2.0.0
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
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rest_client'
2
4
  require 'lolcommits/plugin/base'
3
5
 
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'lolcommits/protonet/version'
2
4
  require 'lolcommits/plugin/protonet'
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Lolcommits
2
4
  module Protonet
3
- VERSION = "0.1.1".freeze
5
+ VERSION = "0.2.0".freeze
4
6
  end
5
7
  end
@@ -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 = "lolcommits-protonet"
8
- spec.version = Lolcommits::Protonet::VERSION
9
- spec.authors = ["Matthew Hutchinson"]
10
- spec.email = ["matt@hiddenloop.com"]
11
- spec.summary = %q{Posts lolcommits to a Protonet box}
12
-
13
- spec.description = <<-EOF
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
- EOF
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.1"
40
+ spec.required_ruby_version = ">= 2.3"
43
41
 
44
42
  spec.add_runtime_dependency "rest-client"
45
43
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "test_helper"
2
4
  require 'webmock/minitest'
3
5
 
@@ -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-protonet
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: 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.1'
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
- rubyforge_project:
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