webmention-endpoint 2.0.2 → 2.0.3
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/.rubocop.yml +5 -0
- data/.ruby-version +1 -1
- data/.travis.yml +5 -4
- data/CHANGELOG.md +4 -0
- data/CONTRIBUTING.md +2 -2
- data/README.md +5 -1
- data/lib/webmention/endpoint/version.rb +1 -1
- data/webmention-endpoint.gemspec +18 -6
- metadata +35 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df997dc2ded75708694c335a0e3ac29f83c8374b3363fa26ff40449fffd5c612
|
|
4
|
+
data.tar.gz: 0c32fdfc621eb72e20676a208aa2b607ee078875d6798aca9dd794d7027a359b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 704367a0af495337280d743ca61941670c923f63d1572eff34ca6a775d0b726d439314bd40295ad9878c485b1a6cf8861cf6046f2023ce55e5119efa2099a715
|
|
7
|
+
data.tar.gz: 78aa2b89d2b13bd5b6edb1e8ca1a9f29c361e2b9d745cef2d04f9f1fdf0747b3361822551b86e36d1770d9fcb4c0dfca87a1536642c0bb2b43fb609cfe5b1167
|
data/.rubocop.yml
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
require:
|
|
2
|
+
- rubocop-performance
|
|
2
3
|
- rubocop-rspec
|
|
3
4
|
|
|
4
5
|
Metrics/BlockLength:
|
|
5
6
|
Exclude:
|
|
7
|
+
- webmention-endpoint.gemspec
|
|
6
8
|
- spec/**/*.rb
|
|
7
9
|
|
|
8
10
|
Metrics/LineLength:
|
|
9
11
|
Enabled: false
|
|
10
12
|
|
|
13
|
+
Naming/RescuedExceptionsVariableName:
|
|
14
|
+
PreferredName: error
|
|
15
|
+
|
|
11
16
|
Style/Documentation:
|
|
12
17
|
Enabled: false
|
|
13
18
|
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.6
|
data/.travis.yml
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
rvm:
|
|
3
|
-
- 2.4.
|
|
4
|
-
- 2.5.
|
|
5
|
-
- 2.6.
|
|
3
|
+
- 2.4.6
|
|
4
|
+
- 2.5.5
|
|
5
|
+
- 2.6.2
|
|
6
6
|
cache:
|
|
7
7
|
- bundler
|
|
8
8
|
before_install:
|
|
9
|
-
- gem
|
|
9
|
+
- gem update --system
|
|
10
|
+
- gem install bundler
|
|
10
11
|
before_script:
|
|
11
12
|
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
12
13
|
- chmod +x ./cc-test-reporter
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTING.md
CHANGED
|
@@ -8,9 +8,9 @@ There are a couple ways you can help improve webmention-endpoint-ruby:
|
|
|
8
8
|
|
|
9
9
|
## Getting Started
|
|
10
10
|
|
|
11
|
-
webmention-endpoint-ruby is developed using Ruby 2.4.
|
|
11
|
+
webmention-endpoint-ruby is developed using Ruby 2.4.6 and is additionally tested against Ruby 2.5.5 and 2.6.2 using [Travis CI](https://travis-ci.com/jgarber623/webmention-endpoint-ruby).
|
|
12
12
|
|
|
13
|
-
Before making changes to webmention-endpoint-ruby, you'll want to install Ruby 2.4.
|
|
13
|
+
Before making changes to webmention-endpoint-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:
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
16
|
bundle install
|
data/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# webmention-endpoint-ruby
|
|
2
2
|
|
|
3
|
+
⚠️ **Deprecation Notice (2019-04-25)** ⚠️ This gem is deprecated in favor of [indieweb/indieweb-endpoints-ruby](https://github.com/indieweb/indieweb-endpoints-ruby) and will no longer receive updates.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
3
7
|
**A Ruby gem for discovering a URL's [Webmention](https://indieweb.org/Webmention) endpoint.**
|
|
4
8
|
|
|
5
9
|
[](https://rubygems.org/gems/webmention-endpoint)
|
|
@@ -19,7 +23,7 @@
|
|
|
19
23
|
|
|
20
24
|
Before installing and using webmention-endpoint-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).
|
|
21
25
|
|
|
22
|
-
webmention-endpoint-ruby is developed using Ruby 2.4.
|
|
26
|
+
webmention-endpoint-ruby is developed using Ruby 2.4.6 and is additionally tested against Ruby 2.5.5 and 2.6.2 using [Travis CI](https://travis-ci.com/jgarber623/webmention-endpoint-ruby).
|
|
23
27
|
|
|
24
28
|
## Installation
|
|
25
29
|
|
data/webmention-endpoint.gemspec
CHANGED
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.authors = ['Jason Garber']
|
|
12
12
|
spec.email = ['jason@sixtwothree.org']
|
|
13
13
|
|
|
14
|
-
spec.summary = 'Discover a URL’s Webmention endpoint.'
|
|
14
|
+
spec.summary = 'Deprecated in favor of indieweb-endpoints from 2019-04-25. Discover a URL’s Webmention endpoint.'
|
|
15
15
|
spec.description = spec.summary
|
|
16
16
|
spec.homepage = 'https://github.com/jgarber623/webmention-endpoint-ruby'
|
|
17
17
|
spec.license = 'MIT'
|
|
@@ -20,16 +20,28 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
|
|
21
21
|
spec.require_paths = ['lib']
|
|
22
22
|
|
|
23
|
-
spec.
|
|
23
|
+
spec.post_install_message = <<NOTICE
|
|
24
|
+
|
|
25
|
+
+------------------------------------------------------+
|
|
26
|
+
| |
|
|
27
|
+
| webmention-endpoint is deprecated from 2019-04-25. |
|
|
28
|
+
| |
|
|
29
|
+
| Please use the indieweb-endpoints gem instead. |
|
|
30
|
+
| |
|
|
31
|
+
+------------------------------------------------------+
|
|
32
|
+
|
|
33
|
+
NOTICE
|
|
34
|
+
|
|
24
35
|
spec.add_development_dependency 'rake', '~> 12.3'
|
|
25
36
|
spec.add_development_dependency 'rspec', '~> 3.8'
|
|
26
|
-
spec.add_development_dependency 'rubocop', '~> 0.
|
|
37
|
+
spec.add_development_dependency 'rubocop', '~> 0.67.2'
|
|
38
|
+
spec.add_development_dependency 'rubocop-performance', '~> 1.0'
|
|
27
39
|
spec.add_development_dependency 'rubocop-rspec', '~> 1.31'
|
|
28
40
|
spec.add_development_dependency 'simplecov', '~> 0.16.1'
|
|
29
41
|
spec.add_development_dependency 'simplecov-console', '~> 0.4.2'
|
|
30
42
|
|
|
31
43
|
spec.add_runtime_dependency 'absolutely', '~> 1.1'
|
|
32
|
-
spec.add_runtime_dependency 'addressable', '~> 2.
|
|
33
|
-
spec.add_runtime_dependency 'http', '~> 4.
|
|
34
|
-
spec.add_runtime_dependency 'nokogiri', '~> 1.
|
|
44
|
+
spec.add_runtime_dependency 'addressable', '~> 2.6'
|
|
45
|
+
spec.add_runtime_dependency 'http', '~> 4.1'
|
|
46
|
+
spec.add_runtime_dependency 'nokogiri', '~> 1.10'
|
|
35
47
|
end
|
metadata
CHANGED
|
@@ -1,71 +1,71 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webmention-endpoint
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
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-
|
|
11
|
+
date: 2019-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: rake
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '12.3'
|
|
20
20
|
type: :development
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '12.3'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
28
|
+
name: rspec
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '3.8'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '3.8'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
42
|
+
name: rubocop
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version:
|
|
47
|
+
version: 0.67.2
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
54
|
+
version: 0.67.2
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: rubocop
|
|
56
|
+
name: rubocop-performance
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version:
|
|
61
|
+
version: '1.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:
|
|
68
|
+
version: '1.0'
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: rubocop-rspec
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -128,43 +128,44 @@ dependencies:
|
|
|
128
128
|
requirements:
|
|
129
129
|
- - "~>"
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
|
-
version: '2.
|
|
131
|
+
version: '2.6'
|
|
132
132
|
type: :runtime
|
|
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: '2.
|
|
138
|
+
version: '2.6'
|
|
139
139
|
- !ruby/object:Gem::Dependency
|
|
140
140
|
name: http
|
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
|
142
142
|
requirements:
|
|
143
143
|
- - "~>"
|
|
144
144
|
- !ruby/object:Gem::Version
|
|
145
|
-
version: '4.
|
|
145
|
+
version: '4.1'
|
|
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: '4.
|
|
152
|
+
version: '4.1'
|
|
153
153
|
- !ruby/object:Gem::Dependency
|
|
154
154
|
name: nokogiri
|
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
|
156
156
|
requirements:
|
|
157
157
|
- - "~>"
|
|
158
158
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: '1.
|
|
159
|
+
version: '1.10'
|
|
160
160
|
type: :runtime
|
|
161
161
|
prerelease: false
|
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
|
163
163
|
requirements:
|
|
164
164
|
- - "~>"
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
|
-
version: '1.
|
|
167
|
-
description:
|
|
166
|
+
version: '1.10'
|
|
167
|
+
description: Deprecated in favor of indieweb-endpoints from 2019-04-25. Discover a
|
|
168
|
+
URL’s Webmention endpoint.
|
|
168
169
|
email:
|
|
169
170
|
- jason@sixtwothree.org
|
|
170
171
|
executables: []
|
|
@@ -195,7 +196,16 @@ homepage: https://github.com/jgarber623/webmention-endpoint-ruby
|
|
|
195
196
|
licenses:
|
|
196
197
|
- MIT
|
|
197
198
|
metadata: {}
|
|
198
|
-
post_install_message:
|
|
199
|
+
post_install_message: |2+
|
|
200
|
+
|
|
201
|
+
+------------------------------------------------------+
|
|
202
|
+
| |
|
|
203
|
+
| webmention-endpoint is deprecated from 2019-04-25. |
|
|
204
|
+
| |
|
|
205
|
+
| Please use the indieweb-endpoints gem instead. |
|
|
206
|
+
| |
|
|
207
|
+
+------------------------------------------------------+
|
|
208
|
+
|
|
199
209
|
rdoc_options: []
|
|
200
210
|
require_paths:
|
|
201
211
|
- lib
|
|
@@ -213,8 +223,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
213
223
|
- !ruby/object:Gem::Version
|
|
214
224
|
version: '0'
|
|
215
225
|
requirements: []
|
|
216
|
-
rubygems_version: 3.0.
|
|
226
|
+
rubygems_version: 3.0.3
|
|
217
227
|
signing_key:
|
|
218
228
|
specification_version: 4
|
|
219
|
-
summary: Discover a URL’s
|
|
229
|
+
summary: Deprecated in favor of indieweb-endpoints from 2019-04-25. Discover a URL’s
|
|
230
|
+
Webmention endpoint.
|
|
220
231
|
test_files: []
|