lolcommits-lolsrv 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: 3779f931d965ac092de05d0dc4129fc709ca214eed1214ff909a574f7326453f
4
- data.tar.gz: '089ce5773724388d8558d655a5a68da04a41fbd8668c4e3d5c52532ae9f5f54b'
3
+ metadata.gz: 97f1e3ad3c3a635858ee9d6dd61305363e6a3decbf8f16933e54ae3234fa3682
4
+ data.tar.gz: e966b7bb620479b861548dd96decabd9ad1933af9da1f28ca2143b9538a9aabc
5
5
  SHA512:
6
- metadata.gz: 59e041fdcd7bbdee32cefdbfba619e1889f5954d80cd966e76544b47afe0aeba9f7664d631b3fd7814fc7ab9ac697a324c29ab4f19401bf1afc40bf4b8e174c3
7
- data.tar.gz: '08f10ccae53516ddc7878be3e97211d00c6d2011e2e17346fc89efb7bb05a294c6d154a29ed203b9c5a7397546c3853aa4e45a9098a7c918141dea4d15c565ac'
6
+ metadata.gz: a445b31f7b9fef6f16eaa28cf6ba003760ff1171450ad1a7b9fe5b6b5da591045aa183b6affdd1c82ffe8ebb8d447e20d015974e996ee93edf09af48222c9d1a
7
+ data.tar.gz: a2667b0723ec6c487a54d824cf076a4a8dba1732b62bd38a464b8a944fb145e08925f2e3aa815b462b9a04c1ae495164a6543198da809eef9f48e2c1ede90f36
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.1] - 2018-05-24
13
20
  ### Changed
14
21
  - Updated gemspec meta data links.
@@ -54,7 +61,8 @@ adheres to [Semantic Versioning](Semver).
54
61
  ### Changed
55
62
  - Initial release
56
63
 
57
- [Unreleased]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.1.1...HEAD
64
+ [Unreleased]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.2.0...HEAD
65
+ [0.2.0]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.1.1...v0.2.0
58
66
  [0.1.1]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.1.0...v0.1.1
59
67
  [0.1.0]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.0.7...v0.1.0
60
68
  [0.0.7]: https://github.com/lolcommits/lolcommits-lolsrv/compare/v0.0.6...v0.0.7
data/README.md CHANGED
@@ -35,7 +35,7 @@ The following upload params are `multipart/form-data` encoded:
35
35
 
36
36
  ## Requirements
37
37
 
38
- * Ruby >= 2.0.0
38
+ * Ruby >= 2.3
39
39
  * A webcam
40
40
  * [ImageMagick](http://www.imagemagick.org)
41
41
  * [ffmpeg](https://www.ffmpeg.org) (optional) for animated gif capturing
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'lolcommits/lolsrv/version'
2
4
  require 'lolcommits/plugin/lolsrv'
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Lolcommits
2
4
  module Lolsrv
3
- VERSION = "0.1.1".freeze
5
+ VERSION = "0.2.0".freeze
4
6
  end
5
7
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rest_client'
2
4
  require 'lolcommits/plugin/base'
3
5
 
@@ -1,23 +1,21 @@
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/lolsrv/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
- spec.name = "lolcommits-lolsrv"
8
- spec.version = Lolcommits::Lolsrv::VERSION
9
- spec.authors = ["Matthew Hutchinson"]
10
- spec.email = ["matt@hiddenloop.com"]
11
- spec.summary = %q{Sync lolcommits to a remote server}
12
-
13
- spec.description = <<-EOF
6
+ spec.name = "lolcommits-lolsrv"
7
+ spec.version = Lolcommits::Lolsrv::VERSION
8
+ spec.authors = ["Matthew Hutchinson"]
9
+ spec.email = ["matt@hiddenloop.com"]
10
+ spec.summary = %q{Sync lolcommits to a remote server}
11
+ spec.homepage = "https://github.com/lolcommits/lolcommits-lolsrv"
12
+ spec.license = "LGPL-3"
13
+
14
+ spec.description = <<-DESC
14
15
  Sync lolcommits to a remote server. After enabling, your next lolcommit will
15
16
  be uploaded, along with all existing lolcommits images that you've already
16
17
  captured. Each lolcommit is then sync'd after capturing.
17
- EOF
18
-
19
- spec.homepage = "https://github.com/lolcommits/lolcommits-lolsrv"
20
- spec.license = "LGPL-3"
18
+ DESC
21
19
 
22
20
  spec.metadata = {
23
21
  "homepage_uri" => "https://github.com/lolcommits/lolcommits-lolsrv",
@@ -41,7 +39,7 @@ Gem::Specification.new do |spec|
41
39
  spec.executables = []
42
40
  spec.require_paths = ["lib"]
43
41
 
44
- spec.required_ruby_version = ">= 2.1"
42
+ spec.required_ruby_version = ">= 2.3"
45
43
 
46
44
  spec.add_runtime_dependency "rest-client"
47
45
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "test_helper"
2
4
  require 'webmock/minitest'
3
5
 
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-lolsrv
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
@@ -170,15 +170,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
170
170
  requirements:
171
171
  - - ">="
172
172
  - !ruby/object:Gem::Version
173
- version: '2.1'
173
+ version: '2.3'
174
174
  required_rubygems_version: !ruby/object:Gem::Requirement
175
175
  requirements:
176
176
  - - ">="
177
177
  - !ruby/object:Gem::Version
178
178
  version: '0'
179
179
  requirements: []
180
- rubyforge_project:
181
- rubygems_version: 2.7.6
180
+ rubygems_version: 3.0.3
182
181
  signing_key:
183
182
  specification_version: 4
184
183
  summary: Sync lolcommits to a remote server