webmention-verification 1.1.0 → 1.1.1

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: 66b22219ff7225b01af23a17fea1b9e1eaa7a0030f277aaab6eae432431d2985
4
- data.tar.gz: 9a07439c13437f0abe28e6a39476c62f8e4404626e16562a75e7b072e712b988
3
+ metadata.gz: 10cd01814d4daade81554a7224dce8439e95b82382b49d0d5a768db64b27b9cc
4
+ data.tar.gz: 181132c149e3c86ac7f93ce7e05391c88c37fd42fe340cb22765b6a1fb5ce30f
5
5
  SHA512:
6
- metadata.gz: 93120d7e665aca4d13616f94edbee5f7953edb8a0abb7e4a3f0c900c07da5597cf2f89da39b001132bf6daf17dbee7f70342a669d29390a0dc94b64c22db7abd
7
- data.tar.gz: e741360306cbdbace9ab13d6bc17d5b2437b031a0b453b142024707b656aee7807d60122d7d3ff89ce3be2a562b691106e424de95530d42d26d0dc141009674e
6
+ metadata.gz: d73f1c43ef9adb8a8df7348d495e38e5440a2b097dc1730f14c68328b518f9aab23ffaa5d9524e519d95ab3c9295dc9434e1520a647746fe896ac7315b3734a0
7
+ data.tar.gz: 83f12d65eb52f66d51e9208961ce809f96adf61d9d68ee3ebfeb3670b23c62c678f1551f66d2c8f153cff6156558d5107b31649c2b313dff56719e950926ecc9
data/.rubocop.yml CHANGED
@@ -8,6 +8,7 @@ Layout/AlignHash:
8
8
 
9
9
  Metrics/BlockLength:
10
10
  Exclude:
11
+ - webmention-verification.gemspec
11
12
  - spec/**/*.rb
12
13
 
13
14
  Metrics/LineLength:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.4.6
1
+ 2.4.7
data/.travis.yml CHANGED
@@ -1,8 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.4.6
4
- - 2.5.5
5
- - 2.6.3
3
+ - 2.4
4
+ - 2.5
5
+ - 2.6
6
6
  cache:
7
7
  - bundler
8
8
  before_install:
data/CHANGELOG.md CHANGED
@@ -1,31 +1,31 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.1.1 / 2019-08-31
4
+
5
+ - Update Addressable gem (0c9368e)
6
+ - Update development dependencies
7
+
3
8
  ## 1.1.0 / 2019-05-01
4
9
 
5
- - Add `Webmention::Verification.client` method.
6
- - Rename base `Error` class to `WebmentionVerificationError` ([0eb3a9a](https://github.com/jgarber623/webmention-verification-ruby/commit/0eb3a9a)).
7
- - Add `HttpRequest` class ([c7602c9](https://github.com/jgarber623/webmention-verification-ruby/commit/c7602c9)).
10
+ - Add `Webmention::Verification.client` method
11
+ - Rename base `Error` class to `WebmentionVerificationError` (0eb3a9a)
12
+ - Add `HttpRequest` class (c7602c9)
8
13
 
9
14
  ## 1.0.0 / 2019-04-25
10
15
 
11
- - Use pre-release HTTP gem (see @httprb/http#489) ([bdcfdad](https://github.com/jgarber623/webmention-verification-ruby/commit/bdcfdad)).
12
- - Refactor verifiers:
13
- - ([7eef7bd](https://github.com/jgarber623/webmention-verification-ruby/commit/7eef7bd))
14
- - ([55eb17e](https://github.com/jgarber623/webmention-verification-ruby/commit/55eb17e))
15
- - ([bcdf3b4](https://github.com/jgarber623/webmention-verification-ruby/commit/bcdf3b4))
16
- - Refactor `Client#response` exception handling ([29afcb0](https://github.com/jgarber623/webmention-verification-ruby/commit/29afcb0)).
17
- - Rename `errors` to `exceptions` ([2bca96b](https://github.com/jgarber623/webmention-verification-ruby/commit/2bca96b)).
18
- - Spec cleanup:
19
- - ([4b84f16](https://github.com/jgarber623/webmention-verification-ruby/commit/4b84f16))
20
- - ([4940e9c](https://github.com/jgarber623/webmention-verification-ruby/commit/4940e9c))
16
+ - Use pre-release HTTP gem (see @httprb/http#489) (bdcfdad)
17
+ - Refactor verifiers (7eef7bd, 55eb17e, bcdf3b4)
18
+ - Refactor `Client#response` exception handling (29afcb0)
19
+ - Rename `errors` to `exceptions` (2bca96b)
20
+ - Spec cleanup (4b84f16, 4940e9c)
21
21
 
22
22
  ## 0.1.2 / 2019-01-03
23
23
 
24
- - Expand supported Ruby versions to include 2.6 ([1d61fea](https://github.com/jgarber623/webmention-verification-ruby/commit/1d61fea)).
24
+ - Expand supported Ruby versions to include 2.6 (1d61fea)
25
25
 
26
26
  ## 0.1.1 / 2018-11-11
27
27
 
28
- - Liberalize gemspec dependency constraints ([063c7f1](https://github.com/jgarber623/webmention-verification-ruby/commit063c7f1)).
28
+ - Liberalize gemspec dependency constraints (063c7f1)
29
29
 
30
30
  ## 0.1.0 / 2018-07-11
31
31
 
data/CONTRIBUTING.md CHANGED
@@ -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.6 and is additionally tested against Ruby 2.5.5 and 2.6.3 using [Travis CI](https://travis-ci.com/jgarber623/webmention-verification-ruby).
11
+ webmention-verification-ruby is developed using Ruby 2.4.7 and is additionally tested against Ruby 2.5 and 2.6 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.6. 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.6 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.7. 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.7 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.6 and is additionally tested against Ruby 2.5.5 and 2.6.3 using [Travis CI](https://travis-ci.com/jgarber623/webmention-verification-ruby).
21
+ webmention-verification-ruby is developed using Ruby 2.4.7 and is additionally tested against Ruby 2.5 and 2.6 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 = '1.1.0'.freeze
3
+ VERSION = '1.1.1'.freeze
4
4
  end
5
5
  end
@@ -3,7 +3,6 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  require 'webmention/verification/version'
5
5
 
6
- # rubocop:disable Metrics/BlockLength
7
6
  Gem::Specification.new do |spec|
8
7
  spec.required_ruby_version = ['>= 2.4', '< 2.7']
9
8
 
@@ -29,15 +28,14 @@ Gem::Specification.new do |spec|
29
28
  spec.add_development_dependency 'rake', '~> 12.3'
30
29
  spec.add_development_dependency 'reek', '~> 5.4'
31
30
  spec.add_development_dependency 'rspec', '~> 3.8'
32
- spec.add_development_dependency 'rubocop', '~> 0.68.1'
33
- spec.add_development_dependency 'rubocop-performance', '~> 1.1'
34
- spec.add_development_dependency 'rubocop-rspec', '~> 1.32'
35
- spec.add_development_dependency 'simplecov', '~> 0.16.1'
36
- spec.add_development_dependency 'simplecov-console', '~> 0.4.2'
37
- spec.add_development_dependency 'webmock', '~> 3.5'
38
-
39
- spec.add_runtime_dependency 'addressable', '~> 2.6'
31
+ spec.add_development_dependency 'rubocop', '~> 0.74.0'
32
+ spec.add_development_dependency 'rubocop-performance', '~> 1.4'
33
+ spec.add_development_dependency 'rubocop-rspec', '~> 1.35'
34
+ spec.add_development_dependency 'simplecov', '~> 0.17.0'
35
+ spec.add_development_dependency 'simplecov-console', '~> 0.5.0'
36
+ spec.add_development_dependency 'webmock', '~> 3.7'
37
+
38
+ spec.add_runtime_dependency 'addressable', '~> 2.7'
40
39
  spec.add_runtime_dependency 'http', '~> 5.0.0.pre'
41
40
  spec.add_runtime_dependency 'nokogiri', '~> 1.10'
42
41
  end
43
- # rubocop:enable Metrics/BlockLength
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: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Garber
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-02 00:00:00.000000000 Z
11
+ date: 2019-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -58,98 +58,98 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.68.1
61
+ version: 0.74.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.68.1
68
+ version: 0.74.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rubocop-performance
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '1.1'
75
+ version: '1.4'
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.1'
82
+ version: '1.4'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rubocop-rspec
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '1.32'
89
+ version: '1.35'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '1.32'
96
+ version: '1.35'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: simplecov
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 0.16.1
103
+ version: 0.17.0
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: 0.16.1
110
+ version: 0.17.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: simplecov-console
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: 0.4.2
117
+ version: 0.5.0
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: 0.4.2
124
+ version: 0.5.0
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: webmock
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: '3.5'
131
+ version: '3.7'
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: '3.5'
138
+ version: '3.7'
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: addressable
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - "~>"
144
144
  - !ruby/object:Gem::Version
145
- version: '2.6'
145
+ version: '2.7'
146
146
  type: :runtime
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
- version: '2.6'
152
+ version: '2.7'
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: http
155
155
  requirement: !ruby/object:Gem::Requirement
@@ -216,7 +216,7 @@ licenses:
216
216
  - MIT
217
217
  metadata:
218
218
  bug_tracker_uri: https://github.com/jgarber623/webmention-verification-ruby/issues
219
- changelog_uri: https://github.com/jgarber623/webmention-verification-ruby/blob/v1.1.0/CHANGELOG.md
219
+ changelog_uri: https://github.com/jgarber623/webmention-verification-ruby/blob/v1.1.1/CHANGELOG.md
220
220
  post_install_message:
221
221
  rdoc_options: []
222
222
  require_paths:
@@ -235,7 +235,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
235
235
  - !ruby/object:Gem::Version
236
236
  version: '0'
237
237
  requirements: []
238
- rubygems_version: 3.0.3
238
+ rubygems_version: 3.0.6
239
239
  signing_key:
240
240
  specification_version: 4
241
241
  summary: Verify a received webmention.