webmention-verification 0.1.1 → 0.1.2

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
- SHA1:
3
- metadata.gz: 4946031eb041bd33939fc6a1afc77808d37f1f02
4
- data.tar.gz: 6e2a78020031a44a7b9bddd1ca0401ff77745240
2
+ SHA256:
3
+ metadata.gz: e3c66fdd4efc77973e3ce38a4d65743b1abf45697e038e10bb9ecc3ea2c24104
4
+ data.tar.gz: 98a39b62a3c569e259d118aafc81ddac613a8fcb95a0eb790f8b9a706b2df940
5
5
  SHA512:
6
- metadata.gz: 4087a8a986968e4592f246b7278a6cc67359d3633e88bb559272013fcb087129790d6d8d45e70336add70f8e0a6317490c638d84aaa5454eaef50586f46099fc
7
- data.tar.gz: 1b2907874f50eab998c9cffc9cf76006d21d072d0f07a8dc4651596bf62ef57bc40c81e05e85230792aa24e094c8cf7c14bf4b4bf4d2f174a7dce5ddfa6ab09e
6
+ metadata.gz: 3a955eaf59b5dbf95e4340dfbbc209df7e54a22f919c003e3ebc2e0ea8f53b15d2ea3fab3fd2a59e79aaf188848672a295945ae6119d2656451b2b45ad4e3d54
7
+ data.tar.gz: 7afa7fd61ed8bb71e8be4abd074e210ed9097d78831aa85a5354e565783bc78b6f2950c4672c6e20390c6358968f6f68fbf5b806d83af937e2c2be02e5fdf024
@@ -1 +1 @@
1
- 2.4.4
1
+ 2.4.5
@@ -1,8 +1,12 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.4.4
4
- - 2.5.1
5
- cache: bundler
3
+ - 2.4.5
4
+ - 2.5.3
5
+ - 2.6.0
6
+ cache:
7
+ - bundler
8
+ before_install:
9
+ - gem install bundler -v '~> 1.17'
6
10
  before_script:
7
11
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
8
12
  - chmod +x ./cc-test-reporter
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.2 / 2019-01-03
4
+
5
+ - Expand supported Ruby versions to include 2.6 ([1d61fea](https://github.com/jgarber623/webmention-verification-ruby/commit/1d61fea)).
6
+
3
7
  ## 0.1.1 / 2018-11-11
4
8
 
5
9
  - Liberalize gemspec dependency constraints ([063c7f1](https://github.com/jgarber623/webmention-verification-ruby/commit063c7f1)).
@@ -8,9 +8,9 @@ There are a couple ways you can help improve webmention-verification-ruby:
8
8
 
9
9
  ## Getting Started
10
10
 
11
- webmention-verification-ruby is developed using Ruby 2.4.4 and is additionally tested against Ruby 2.5.1 using [Travis CI](https://travis-ci.com/jgarber623/webmention-verification-ruby).
11
+ webmention-verification-ruby is developed using Ruby 2.4.5 and is additionally tested against Ruby 2.5.3 and 2.6.0 using [Travis CI](https://travis-ci.com/jgarber623/webmention-verification-ruby).
12
12
 
13
- Before making changes to webmention-verification-ruby, you'll want to install Ruby 2.4.4. It's recommended that you use a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm). Once you've installed Ruby 2.4.4 using your method of choice, install the project's gems by running:
13
+ Before making changes to webmention-verification-ruby, you'll want to install Ruby 2.4.5. It's recommended that you use a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm). Once you've installed Ruby 2.4.5 using your method of choice, install the project's gems by running:
14
14
 
15
15
  ```sh
16
16
  bundle install
data/README.md CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  Before installing and using webmention-verification-ruby, you'll want to have [Ruby](https://www.ruby-lang.org) 2.4 (or newer) installed. It's recommended that you use a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm).
20
20
 
21
- webmention-verification-ruby is developed using Ruby 2.4.4 and is additionally tested against Ruby 2.5.1 using [Travis CI](https://travis-ci.com/jgarber623/webmention-verification-ruby).
21
+ webmention-verification-ruby is developed using Ruby 2.4.5 and is additionally tested against Ruby 2.5.3 and 2.6.0 using [Travis CI](https://travis-ci.com/jgarber623/webmention-verification-ruby).
22
22
 
23
23
  ## Installation
24
24
 
@@ -1,5 +1,5 @@
1
1
  module Webmention
2
2
  module Verification
3
- VERSION = '0.1.1'.freeze
3
+ VERSION = '0.1.2'.freeze
4
4
  end
5
5
  end
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'webmention/verification/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.required_ruby_version = ['>= 2.4', '< 2.6']
7
+ spec.required_ruby_version = ['>= 2.4', '< 2.7']
8
8
 
9
9
  spec.name = 'webmention-verification'
10
10
  spec.version = Webmention::Verification::VERSION
@@ -23,8 +23,8 @@ Gem::Specification.new do |spec|
23
23
  spec.add_development_dependency 'bundler', '~> 1.17'
24
24
  spec.add_development_dependency 'rake', '~> 12.3'
25
25
  spec.add_development_dependency 'rspec', '~> 3.8'
26
- spec.add_development_dependency 'rubocop', '~> 0.60.0'
27
- spec.add_development_dependency 'rubocop-rspec', '~> 1.30'
26
+ spec.add_development_dependency 'rubocop', '~> 0.62.0'
27
+ spec.add_development_dependency 'rubocop-rspec', '~> 1.31'
28
28
  spec.add_development_dependency 'simplecov', '~> 0.16.1'
29
29
  spec.add_development_dependency 'simplecov-console', '~> 0.4.2'
30
30
  spec.add_development_dependency 'webmock', '~> 3.4'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webmention-verification
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Garber
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-11 00:00:00.000000000 Z
11
+ date: 2019-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -58,28 +58,28 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.60.0
61
+ version: 0.62.0
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 0.60.0
68
+ version: 0.62.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rubocop-rspec
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '1.30'
75
+ version: '1.31'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '1.30'
82
+ version: '1.31'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: simplecov
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -209,15 +209,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
209
209
  version: '2.4'
210
210
  - - "<"
211
211
  - !ruby/object:Gem::Version
212
- version: '2.6'
212
+ version: '2.7'
213
213
  required_rubygems_version: !ruby/object:Gem::Requirement
214
214
  requirements:
215
215
  - - ">="
216
216
  - !ruby/object:Gem::Version
217
217
  version: '0'
218
218
  requirements: []
219
- rubyforge_project:
220
- rubygems_version: 2.6.14.1
219
+ rubygems_version: 3.0.2
221
220
  signing_key:
222
221
  specification_version: 4
223
222
  summary: Verify a received webmention.