indieauth-token-verification 0.2.0 → 0.2.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: ad58613dddfcf85c62a6813e0cdb57460114325227e0c8d1e574cffdfb0e702e
4
- data.tar.gz: 6d1ae97766b6c4510668995ef0fa4aebef0a31b6a5c6dd9ecf14fc17b8857270
3
+ metadata.gz: f3377408ea758e23d9fc55ca4810b7dc3b3257e80901237c8aba07ee424ba691
4
+ data.tar.gz: d7ad8bcfe73d660134ca6afd3ebc42a43315084a4ea04b345678e419cca803b8
5
5
  SHA512:
6
- metadata.gz: cbc762772b853ebd90d0e62129130b47fda55220ccfb5e28090f4b489d7543dbb5c4b3fa64cca4190ab865a41a334bd14cca9e1ee6862ffe141f10f74e362c82
7
- data.tar.gz: 02beaf020aa5298f048d82736f554779960ddc3861d7db042e11cca4077daf358a3495c9f7f5edc891617f8fed0fc86d2b5437b71210a31037c1b2768e48224c
6
+ metadata.gz: 06c0dc8d9928fa33abd776c35e51e380511f79809e5bbbd091255e39508a82637b55b624d11333082c7d19c20cb507d6f6dfc6dd968aebe7f7a695f6ba49c61c
7
+ data.tar.gz: af431915c5424fba2488b9e75a34841624162bc5027b4c448ce201d3740882e2a160f78dc248da726d658fe2d4e2ec61a5f42dba259cf5113d58fa6d68119389
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.1] - 2020-08-03
10
+
11
+ ### Changed
12
+ - Update gemspec links to point to https://code.deeden.co.uk/
13
+
9
14
  ## [0.2.0] - 2019-01-24
10
15
 
11
16
  ### Added
data/README.md CHANGED
@@ -76,8 +76,12 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
76
76
 
77
77
  ## Contributing
78
78
 
79
- Bug reports and pull requests are welcome on GitHub at https://github.com/srushe/indieauth-token-verification. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
79
+ Bug reports can be added at [https://code.deeden.co.uk/indieauth-token-verification/issues](https://code.deeden.co.uk/indieauth-token-verification/issues), while patches are welcome at [https://code.deeden.co.uk/indieauth-token-verification/patches](https://code.deeden.co.uk/indieauth-token-verification/patches).
80
80
 
81
81
  ## License
82
82
 
83
83
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
84
+
85
+ ## Code of Conduct
86
+
87
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
@@ -11,17 +11,14 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{Perform the access token verification portion of the IndieAuth process.}
13
13
  spec.description = %q{Perform the access token verification portion of the IndieAuth process by communicationg with a token endpoint.}
14
- spec.homepage = "https://github.com/srushe/indieauth-token-verification"
14
+ spec.homepage = "https://code.deeden.co.uk/indieauth-token-verification"
15
15
  spec.license = "MIT"
16
16
 
17
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
- # to allow pushing to a single host or delete this section to allow pushing to any host.
19
- if spec.respond_to?(:metadata)
20
- spec.metadata['allowed_push_host'] = ENV.fetch('GEMSERVER_URL', 'nohost')
21
- else
22
- raise "RubyGems 2.0 or newer is required to protect against " \
23
- "public gem pushes."
24
- end
17
+ spec.metadata = {
18
+ 'bug_tracker_uri' => 'https://code.deeden.co.uk/indieauth-token-verification/issues',
19
+ 'changelog_uri' => 'https://code.deeden.co.uk/indieauth-token-verification/changelog',
20
+ 'homepage_uri' => 'https://code.deeden.co.uk/indieauth-token-verification'
21
+ }
25
22
 
26
23
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
24
  f.match(%r{^(test|spec|features)/})
@@ -1,5 +1,5 @@
1
1
  module IndieAuth
2
2
  class TokenVerification
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: indieauth-token-verification
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Rushe
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-02-15 00:00:00.000000000 Z
11
+ date: 2020-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -103,12 +103,14 @@ files:
103
103
  - indieauth-token-verification.gemspec
104
104
  - lib/indie_auth/token_verification.rb
105
105
  - lib/indie_auth/token_verification/version.rb
106
- homepage: https://github.com/srushe/indieauth-token-verification
106
+ homepage: https://code.deeden.co.uk/indieauth-token-verification
107
107
  licenses:
108
108
  - MIT
109
109
  metadata:
110
- allowed_push_host: https://rubygems.org/
111
- post_install_message:
110
+ bug_tracker_uri: https://code.deeden.co.uk/indieauth-token-verification/issues
111
+ changelog_uri: https://code.deeden.co.uk/indieauth-token-verification/changelog
112
+ homepage_uri: https://code.deeden.co.uk/indieauth-token-verification
113
+ post_install_message:
112
114
  rdoc_options: []
113
115
  require_paths:
114
116
  - lib
@@ -123,9 +125,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
125
  - !ruby/object:Gem::Version
124
126
  version: '0'
125
127
  requirements: []
126
- rubyforge_project:
127
- rubygems_version: 2.7.6
128
- signing_key:
128
+ rubygems_version: 3.1.4
129
+ signing_key:
129
130
  specification_version: 4
130
131
  summary: Perform the access token verification portion of the IndieAuth process.
131
132
  test_files: []