lolcommits-tumblr 0.2.0 → 0.3.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: e61d5a9e763a85d55004451b8cfb030c88e1e41a7e7f817874bfc1b365f8cae4
4
- data.tar.gz: 05774e798d7fe003a7ef8d01a22d9463607a48e955244ed157a7ed1f40dcba57
3
+ metadata.gz: 283892fd577aaa15ffc614e5698f79f676e42007303527dd751a050c842aba0b
4
+ data.tar.gz: b11f34c43109a44bf8aec1d2ba6bd721811c9edb75de03df7a0a71e00dc6a361
5
5
  SHA512:
6
- metadata.gz: 8bf47271fe1030e962f6edf27f8150790e2c831113d8bc96ac0c919a8fef966a70edb723c91f68ee1e54b34c1d8fcce953c1598e754f3cabe96ec0f2519270cb
7
- data.tar.gz: b3d28aca7147c9160301f16164048fb64a694c3a716586bd29189ec364fde0b1094a25ee5320c3b9a2cfdef3cb86fcde61438eaee2151628227abaad11f94f23
6
+ metadata.gz: dfd80584bbc67b84dbadbc1b9009fb9d21efeef790f2b0720cc8c62ada92d22c834cd67a13211aab63220b7abfed6dd9807107f805ae4c7a637df6066be3f1b4
7
+ data.tar.gz: d0476cd8fc396e2300c5846a7df49be8710047ff5f6f716ca210ac7dc6e8091f38bc2c2612321f067ae27cbcb68c01f776de0fcd4a98d3b22829f3253be69a50
data/.travis.yml CHANGED
@@ -2,17 +2,16 @@ sudo: false
2
2
  language: ruby
3
3
  cache: bundler
4
4
  rvm:
5
- - 2.3.6
6
- - 2.4.3
7
- - 2.5.1
8
- - ruby-head
5
+ - 2.3.8
6
+ - 2.4.6
7
+ - 2.5.5
8
+ - 2.6.3
9
+ - ruby-head
9
10
 
10
11
  before_install:
11
- - gem update --system
12
- - gem install bundler
13
- - git --version
14
- - git config --global user.email "lol@commits.org"
15
- - 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"
16
15
 
17
16
  matrix:
18
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.3.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.2.0] - 2018-17-06
13
20
  ### Changed
14
21
  - Require at least Ruby 2.3 (webrick requires it)
@@ -46,7 +53,8 @@ adheres to [Semantic Versioning](Semver).
46
53
  ### Changed
47
54
  - Initial release
48
55
 
49
- [Unreleased]: https://github.com/lolcommits/lolcommits-tumblr/compare/v0.2.0...HEAD
56
+ [Unreleased]: https://github.com/lolcommits/lolcommits-tumblr/compare/v0.3.0...HEAD
57
+ [0.3.0]: https://github.com/lolcommits/lolcommits-tumblr/compare/v0.2.0...v0.3.0
50
58
  [0.2.0]: https://github.com/lolcommits/lolcommits-tumblr/compare/v0.1.1...v0.2.0
51
59
  [0.1.1]: https://github.com/lolcommits/lolcommits-tumblr/compare/v0.1.0...v0.1.1
52
60
  [0.1.0]: https://github.com/lolcommits/lolcommits-tumblr/compare/v0.0.5...v0.1.0
data/README.md CHANGED
@@ -15,7 +15,7 @@ Tumblr access token and secret (the plugin will guide you through this process).
15
15
 
16
16
  ## Requirements
17
17
 
18
- * Ruby >= 2.0.0
18
+ * Ruby >= 2.3
19
19
  * A webcam
20
20
  * [ImageMagick](http://www.imagemagick.org)
21
21
  * [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
  require 'lolcommits/cli/launcher'
3
5
  require 'oauth'
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'lolcommits/tumblr/version'
2
4
  require 'lolcommits/plugin/tumblr'
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Lolcommits
2
4
  module Tumblr
3
- VERSION = "0.2.0".freeze
5
+ VERSION = "0.3.0".freeze
4
6
  end
5
7
  end
@@ -1,21 +1,20 @@
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/tumblr/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
- spec.name = "lolcommits-tumblr"
8
- spec.version = Lolcommits::Tumblr::VERSION
9
- spec.authors = ["Matthew Hutchinson"]
10
- spec.email = ["matt@hiddenloop.com"]
11
- spec.summary = %q{Post lolcommits to Tumblr}
12
- spec.homepage = "https://github.com/lolcommits/lolcommits-tumblr"
13
- spec.license = "LGPL-3"
14
-
15
- spec.description = <<-EOF
6
+ spec.name = "lolcommits-tumblr"
7
+ spec.version = Lolcommits::Tumblr::VERSION
8
+ spec.authors = ["Matthew Hutchinson"]
9
+ spec.email = ["matt@hiddenloop.com"]
10
+ spec.summary = %q{Post lolcommits to Tumblr}
11
+ spec.homepage = "https://github.com/lolcommits/lolcommits-tumblr"
12
+ spec.license = "LGPL-3"
13
+
14
+ spec.description = <<-DESC
16
15
  A simple plugin to post lolcommits to your Tumblr. Configure it with a Tumblr
17
16
  access token and secret.
18
- EOF
17
+ DESC
19
18
 
20
19
  spec.metadata = {
21
20
  "homepage_uri" => "https://github.com/lolcommits/lolcommits-tumblr",
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "json"
2
4
  require 'net/http'
3
5
  require "test_helper"
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-tumblr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.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-06-17 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: tumblr_client
@@ -202,8 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
202
202
  - !ruby/object:Gem::Version
203
203
  version: '0'
204
204
  requirements: []
205
- rubyforge_project:
206
- rubygems_version: 2.7.6
205
+ rubygems_version: 3.0.3
207
206
  signing_key:
208
207
  specification_version: 4
209
208
  summary: Post lolcommits to Tumblr