lolcommits-flowdock 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: 14c782759d220ab058aec0a6dc7f940dc6ca906ad1ed479fefdcb1277aebd9ca
4
- data.tar.gz: e3ffc43c1ea8f37d0700ebbb5672b019bd7507e3c26322b248410c257aa96741
3
+ metadata.gz: 922694c0510d0d7cea4683fe8bb8e18067b9b31cafb2c918dd281bca6c2cedf7
4
+ data.tar.gz: 54fdf39c1491aea462dac239ada98dd0fdb058b7ff959ff3a039496547550bca
5
5
  SHA512:
6
- metadata.gz: 461feebdd77a2f73cf46a53952993b029dd46a62b9ee85fb47bd6a946c5f6783b5fe7f2d65810b71d99ef868e8442b872036bc57e1c0c9cb8e4b46948eab1bb5
7
- data.tar.gz: 8a404800d55b53a8db02bbc55c9d4ae166897fffebd445b306482769034405880feb895090dab321b9c81a1dfd7c4e3268f851b4acf06599e9a1b417068a7354
6
+ metadata.gz: bba5ded94a1c3f7023f618a24cf98f1654710f575aaa1930e9f78edafff878704c46a369e991749f339bab1095724db4a3c43879474aa507a522722d5949f30d
7
+ data.tar.gz: 907022a9b8bc21751425e3319e0db50be2ce9e4b1687954db674473726ad696f8959ae91f87b47ff0242bed343f450d3cc0aba38b69a2d26e9bd1c7e08c2bc9f
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.
@@ -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-flowdock/compare/v0.1.1...HEAD
52
+ [Unreleased]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.2.0...HEAD
53
+ [0.2.0]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.1.1...v0.2.0
46
54
  [0.1.1]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.1.0...v0.1.1
47
55
  [0.1.0]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.0.4...v0.1.0
48
56
  [0.0.4]: https://github.com/lolcommits/lolcommits-flowdock/compare/v0.0.3...v0.0.4
data/README.md CHANGED
@@ -18,7 +18,7 @@ commit](https://github.com/lolcommits/lolcommits-flowdock/raw/master/assets/imag
18
18
 
19
19
  ## Requirements
20
20
 
21
- * Ruby >= 2.0.0
21
+ * Ruby >= 2.3
22
22
  * A webcam
23
23
  * [ImageMagick](http://www.imagemagick.org)
24
24
  * [ffmpeg](https://www.ffmpeg.org) (optional) for animated gif capturing
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'lolcommits/flowdock/version'
2
4
  require 'lolcommits/plugin/flowdock'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rest_client'
2
4
  require 'json'
3
5
 
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Lolcommits
2
4
  module Flowdock
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 'lolcommits/plugin/base'
2
4
  require 'lolcommits/cli/launcher'
3
5
  require 'lolcommits/flowdock/client'
@@ -1,22 +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/flowdock/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
- spec.name = "lolcommits-flowdock"
8
- spec.version = Lolcommits::Flowdock::VERSION
9
- spec.authors = ["Matthew Hutchinson"]
10
- spec.email = ["matt@hiddenloop.com"]
11
- spec.summary = %q{Posts lolcommits to Flowdockr}
12
-
13
- spec.description = <<-EOF
6
+ spec.name = "lolcommits-flowdock"
7
+ spec.version = Lolcommits::Flowdock::VERSION
8
+ spec.authors = ["Matthew Hutchinson"]
9
+ spec.email = ["matt@hiddenloop.com"]
10
+ spec.summary = %q{Posts lolcommits to Flowdockr}
11
+ spec.homepage = "https://github.com/lolcommits/lolcommits-flowdock"
12
+ spec.license = "LGPL-3"
13
+
14
+ spec.description = <<-DESC
14
15
  Automatically posts lolcommit images to a Flowdock flow (room) with the
15
16
  #lolcommits hashtag.
16
- EOF
17
-
18
- spec.homepage = "https://github.com/lolcommits/lolcommits-flowdock"
19
- spec.license = "LGPL-3"
17
+ DESC
20
18
 
21
19
  spec.metadata = {
22
20
  "homepage_uri" => "https://github.com/lolcommits/lolcommits-flowdock",
@@ -40,7 +38,7 @@ Gem::Specification.new do |spec|
40
38
  spec.executables = []
41
39
  spec.require_paths = ["lib"]
42
40
 
43
- spec.required_ruby_version = ">= 2.1"
41
+ spec.required_ruby_version = ">= 2.3"
44
42
 
45
43
  spec.add_runtime_dependency "rest-client"
46
44
 
@@ -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-flowdock
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: Posts lolcommits to Flowdockr