webmention-verification 3.0.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/.travis.yml +0 -1
- data/CHANGELOG.md +6 -1
- data/CONTRIBUTING.md +2 -2
- data/Gemfile +4 -4
- data/README.md +5 -5
- data/lib/webmention/verification/version.rb +1 -1
- data/webmention-verification.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2063cd50c99a812e53c8dbeb25b5ad18ff41dd3fb2b8038041b69a69aa50e4a7
|
|
4
|
+
data.tar.gz: 4c5461865432816ae6c9fdd6244fe96494ee749b9b060a2fce17215beb7ca591
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41e456ed1fdac332e76d1acb4b3b62b52a1d648e7c40113c65b03f35cf66d605f282a8601040bcc931b1c2b24391a0f68bf7fb4f55e2d3a40803997c5e0264f3
|
|
7
|
+
data.tar.gz: 39864e52e855443a515e160013beb9352e798c028c3786c7fd17672f2645508695a94c180676e6f0fb7d1713e3f54bf2a74c85f02057b75edc3fcdfa0d148a11
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.5.8
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 4.0.0 / 2020-08-23
|
|
4
|
+
|
|
5
|
+
- **Breaking Change:** Update minimum supported Ruby version to 2.5 (096012e)
|
|
6
|
+
- Update development Ruby version to 2.5.8 (3b3f38e)
|
|
7
|
+
|
|
8
|
+
## 3.0.0 / 2020-05-14
|
|
4
9
|
|
|
5
10
|
- **Breaking Change:** Remove `Webmention::Verification.client` convenience method (af575d7)
|
|
6
11
|
- **Breaking Change:** Remove `HttpRequest` class (112f9d3)
|
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.
|
|
11
|
+
webmention-verification-ruby is developed using Ruby 2.5.8 and is additionally tested against Ruby 2.6 and 2.7 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.
|
|
13
|
+
Before making changes to webmention-verification-ruby, you'll want to install Ruby 2.5.8. 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.5.8 using your method of choice, install the project's gems by running:
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
16
|
bundle install
|
data/Gemfile
CHANGED
|
@@ -7,9 +7,9 @@ gem 'pry-byebug', '~> 3.9'
|
|
|
7
7
|
gem 'rake', '~> 13.0'
|
|
8
8
|
gem 'reek', '~> 6.0'
|
|
9
9
|
gem 'rspec', '~> 3.9'
|
|
10
|
-
gem 'rubocop', '~> 0.
|
|
11
|
-
gem 'rubocop-performance', '~> 1.
|
|
12
|
-
gem 'rubocop-rspec', '~> 1.
|
|
13
|
-
gem 'simplecov', '~> 0.
|
|
10
|
+
gem 'rubocop', '~> 0.89.1'
|
|
11
|
+
gem 'rubocop-performance', '~> 1.7'
|
|
12
|
+
gem 'rubocop-rspec', '~> 1.43'
|
|
13
|
+
gem 'simplecov', '~> 0.19.0'
|
|
14
14
|
gem 'simplecov-console', '~> 0.7.2'
|
|
15
15
|
gem 'webmock', '~> 3.8'
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://rubygems.org/gems/webmention-verification)
|
|
6
6
|
[](https://rubygems.org/gems/webmention-verification)
|
|
7
|
-
[](https://travis-ci.com/jgarber623/webmention-verification-ruby)
|
|
8
8
|
[](https://depfu.com/github/jgarber623/webmention-verification-ruby)
|
|
9
9
|
[](https://codeclimate.com/github/jgarber623/webmention-verification-ruby)
|
|
10
10
|
[](https://codeclimate.com/github/jgarber623/webmention-verification-ruby/code)
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
## Key Features
|
|
13
13
|
|
|
14
14
|
- Compliant with [Section 3.2.2](https://www.w3.org/TR/webmention/#webmention-verification) of [the W3C's Webmention Recommendation](https://www.w3.org/TR/webmention/).
|
|
15
|
-
- Supports Ruby 2.
|
|
15
|
+
- Supports Ruby 2.5 and newer.
|
|
16
16
|
|
|
17
17
|
## Getting Started
|
|
18
18
|
|
|
19
|
-
Before installing and using webmention-verification-ruby, you'll want to have [Ruby](https://www.ruby-lang.org) 2.
|
|
19
|
+
Before installing and using webmention-verification-ruby, you'll want to have [Ruby](https://www.ruby-lang.org) 2.5 (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.
|
|
21
|
+
webmention-verification-ruby is developed using Ruby 2.5.8 and is additionally tested against Ruby 2.6 and 2.7 using [Travis CI](https://travis-ci.com/jgarber623/webmention-verification-ruby).
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
|
@@ -155,7 +155,7 @@ webmention-verification-ruby will also raise a `Webmention::Verification::Unsupp
|
|
|
155
155
|
|
|
156
156
|
## Contributing
|
|
157
157
|
|
|
158
|
-
Interested in helping improve webmention-verification-ruby? Awesome! Your help is greatly appreciated. See [CONTRIBUTING.md](https://github.com/jgarber623/webmention-verification-ruby/blob/
|
|
158
|
+
Interested in helping improve webmention-verification-ruby? Awesome! Your help is greatly appreciated. See [CONTRIBUTING.md](https://github.com/jgarber623/webmention-verification-ruby/blob/main/CONTRIBUTING.md) for details.
|
|
159
159
|
|
|
160
160
|
## Acknowledgments
|
|
161
161
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require_relative 'lib/webmention/verification/version'
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 2.
|
|
4
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.5', '< 2.8')
|
|
5
5
|
|
|
6
6
|
spec.name = 'webmention-verification'
|
|
7
7
|
spec.version = Webmention::Verification::VERSION
|
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:
|
|
4
|
+
version: 4.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Garber
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|
|
@@ -89,7 +89,7 @@ licenses:
|
|
|
89
89
|
- MIT
|
|
90
90
|
metadata:
|
|
91
91
|
bug_tracker_uri: https://github.com/jgarber623/webmention-verification-ruby/issues
|
|
92
|
-
changelog_uri: https://github.com/jgarber623/webmention-verification-ruby/blob/
|
|
92
|
+
changelog_uri: https://github.com/jgarber623/webmention-verification-ruby/blob/v4.0.0/CHANGELOG.md
|
|
93
93
|
post_install_message:
|
|
94
94
|
rdoc_options: []
|
|
95
95
|
require_paths:
|
|
@@ -98,7 +98,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
98
98
|
requirements:
|
|
99
99
|
- - ">="
|
|
100
100
|
- !ruby/object:Gem::Version
|
|
101
|
-
version: '2.
|
|
101
|
+
version: '2.5'
|
|
102
102
|
- - "<"
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
104
|
version: '2.8'
|
|
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
109
|
version: '0'
|
|
110
110
|
requirements: []
|
|
111
|
-
rubygems_version: 3.1.
|
|
111
|
+
rubygems_version: 3.1.2
|
|
112
112
|
signing_key:
|
|
113
113
|
specification_version: 4
|
|
114
114
|
summary: Verify a received webmention.
|