webmention-verification 6.0.0 → 6.0.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: 3d920d91622406f373a8b74d0169383d3d847a6e534da19ecaf6a230078c1bcf
4
- data.tar.gz: dc29ab3a43d77d48e6b6852a3fe884ab7a1af8e7ba0a63d36ac61207168f92a5
3
+ metadata.gz: f93e78febe8a0d3a67bb30bd277a4b2ee5b47ca9df408a2e2a0bf1ebd2e1bce1
4
+ data.tar.gz: cc0c4e92839f0ad2ec361e4b4aa8162c71c4ace2012ac26e84bf04659d9d87bf
5
5
  SHA512:
6
- metadata.gz: 8d0efb2c62c2d8b1e854e1251f7f5552731352e8864599b87694e08b223088c8e8c891be1622e34a87775ba371cd990c4b9601092582b33fc9010cc585ef8820
7
- data.tar.gz: 2ef8ae0f3bae0825d2cae1fb24ae890095c6855b6ab2fc65ed822fb8ab4c531b82a91f49004aba0e307bdc02ae20c65b6679cfc56705231f020b8de75c4b7850
6
+ metadata.gz: b02d679f87278ac58d1f29e51f3ad84d6cdaccf1c3699b57dee4ca119d7c8c4ce0afc8508cf44394307dfb1667c93f57ca6ed6040b914109098ce02b33eb93c7
7
+ data.tar.gz: '0828eaaf46782bd00c29234632155eaaf32ff2c7d80341efb7cd1ce56ca50af3857b2e7a99da6c18e25c246f834cda8ba0637be23a40a2934f3a8fe7af0827e4'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 6.0.1 / unreleased
4
+
5
+ - Add deprecation notice (0ba33f2)
6
+
3
7
  ## 6.0.0 / 2022-05-03
4
8
 
5
9
  - Move/rename BaseVerifier to Verifier class (6965e98)
data/CONTRIBUTING.md CHANGED
@@ -22,7 +22,7 @@ bundle install
22
22
  1. Install development dependencies as outlined above.
23
23
  1. Create a feature branch for the code changes you're looking to make: `git checkout -b my-new-feature`.
24
24
  1. _Write some code!_
25
- 1. If your changes would benefit from testing, add the necessary tests and verify everything passes by running `bin/ci`.
25
+ 1. If your changes would benefit from testing, add the necessary tests and verify everything passes by running `bundle exec rspec`.
26
26
  1. Commit your changes: `git commit -am 'Add some new feature or fix some issue'`. _(See [this excellent article](https://chris.beams.io/posts/git-commit/) for tips on writing useful Git commit messages.)_
27
27
  1. Push the branch to your fork: `git push -u origin my-new-feature`.
28
28
  1. Create a new [pull request][pulls] and we'll review your changes.
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # webmention-verification-ruby
2
2
 
3
+ ⚠️ **Deprecation Notice (2022-05-13)** ⚠️ This gem is deprecated in favor of [indieweb/webmention-client-ruby](https://github.com/indieweb/webmention-client-ruby) and will no longer receive updates.
4
+
5
+ ---
6
+
3
7
  **A Ruby gem for verifying a received [webmention](https://indieweb.org/Webmention).**
4
8
 
5
9
  [![Gem](https://img.shields.io/gem/v/webmention-verification.svg?logo=rubygems&style=for-the-badge)](https://rubygems.org/gems/webmention-verification)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Webmention
4
4
  module Verification
5
- VERSION = '6.0.0'
5
+ VERSION = '6.0.1'
6
6
  end
7
7
  end
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.authors = ['Jason Garber']
11
11
  spec.email = ['jason@sixtwothree.org']
12
12
 
13
- spec.summary = 'Verify a received webmention.'
13
+ spec.summary = 'Deprecated in favor of indieweb-endpoints from 2022-05-13. Verify a received webmention.'
14
14
  spec.description = spec.summary
15
15
  spec.homepage = 'https://github.com/jgarber623/webmention-verification-ruby'
16
16
  spec.license = 'MIT'
@@ -27,6 +27,18 @@ Gem::Specification.new do |spec|
27
27
  'rubygems_mfa_required' => 'true'
28
28
  }
29
29
 
30
+ spec.post_install_message = <<NOTICE
31
+
32
+ +----------------------------------------------------------+
33
+ | |
34
+ | webmention-verification is deprecated from 2022-05-13. |
35
+ | |
36
+ | Please use the webmention gem instead. |
37
+ | |
38
+ +----------------------------------------------------------+
39
+
40
+ NOTICE
41
+
30
42
  spec.add_runtime_dependency 'http', '~> 5.0'
31
43
  spec.add_runtime_dependency 'nokogiri', '~> 1.13'
32
44
  end
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: 6.0.0
4
+ version: 6.0.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: 2022-05-03 00:00:00.000000000 Z
11
+ date: 2022-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http
@@ -38,7 +38,8 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.13'
41
- description: Verify a received webmention.
41
+ description: Deprecated in favor of indieweb-endpoints from 2022-05-13. Verify a received
42
+ webmention.
42
43
  email:
43
44
  - jason@sixtwothree.org
44
45
  executables: []
@@ -62,9 +63,18 @@ licenses:
62
63
  - MIT
63
64
  metadata:
64
65
  bug_tracker_uri: https://github.com/jgarber623/webmention-verification-ruby/issues
65
- changelog_uri: https://github.com/jgarber623/webmention-verification-ruby/blob/v6.0.0/CHANGELOG.md
66
+ changelog_uri: https://github.com/jgarber623/webmention-verification-ruby/blob/v6.0.1/CHANGELOG.md
66
67
  rubygems_mfa_required: 'true'
67
- post_install_message:
68
+ post_install_message: |2+
69
+
70
+ +----------------------------------------------------------+
71
+ | |
72
+ | webmention-verification is deprecated from 2022-05-13. |
73
+ | |
74
+ | Please use the webmention gem instead. |
75
+ | |
76
+ +----------------------------------------------------------+
77
+
68
78
  rdoc_options: []
69
79
  require_paths:
70
80
  - lib
@@ -85,5 +95,6 @@ requirements: []
85
95
  rubygems_version: 3.3.12
86
96
  signing_key:
87
97
  specification_version: 4
88
- summary: Verify a received webmention.
98
+ summary: Deprecated in favor of indieweb-endpoints from 2022-05-13. Verify a received
99
+ webmention.
89
100
  test_files: []