jwk-loader 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cf3152f212e3f95a56d2f9c46eacd9ddf4a6330f51689096f89263b811a894c1
4
- data.tar.gz: 44b49a622abb3da44c9a77c3eb6e47050efa0735a43c7fc56ebada54442d8296
3
+ metadata.gz: 95cc2cfa71f70b65862e3be731568a8f935934ed814f45d282eed64c713e5e71
4
+ data.tar.gz: 3d9d2ba513abc82c1a8f356287622829b784b3e4fa89746cf517c036301c905c
5
5
  SHA512:
6
- metadata.gz: 02253e632ac22d54c64898a03c2cebb8dc568cdd937eadbc8380a20720b631d382deebaf591b8bf830d0dc52f1cb0cfa4e380f5ec1a775911ab0edb2f37982c0
7
- data.tar.gz: 61223d3bb1a49c4b532dedf59cdc173174a54220fd448c8f302cfe001bfe16c3066e77d063473a67da56cc14c0a4680ef40bd25080079ca21ab606f834cab64f
6
+ metadata.gz: d8cb52c884a168816011173d453f0567c023f17e78f10badd5da583fbf4af6445723d434d7a77ee6d0f51bd645a6f2eaf4a9019646a0f568403a7286f4d03819
7
+ data.tar.gz: 76b90c92b4af19b21aa1ddd07d9e7b300042f3521301094b00576aee491fe602e7e70e9a6dd2ed166a1b2f50b5f0ceb0f21bfee3bb8433ee965d4e4e08067f64
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2022-08-26
4
+
5
+ - make sure 'net/http' is required [#1](https://github.com/anakinj/jwk-loader/pull/2) ([@lukad](https://github.com/lukad)).
6
+
3
7
  ## [0.1.0] - 2022-07-06
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -33,7 +33,7 @@ After checking out the repo, run `bundle install` to install dependencies. Then,
33
33
 
34
34
  ## Contributing
35
35
 
36
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/jwk-loader. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/jwk-loader/blob/main/CODE_OF_CONDUCT.md).
36
+ Bug reports and pull requests are welcome on GitHub at https://github.com/anakinj/jwk-loader. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/anakinj/jwk-loader/blob/main/CODE_OF_CONDUCT.md).
37
37
 
38
38
  ## License
39
39
 
@@ -2,6 +2,7 @@
2
2
 
3
3
  require "uri"
4
4
  require "json"
5
+ require "net/http"
5
6
 
6
7
  module JwkLoader
7
8
  module Jwks
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JwkLoader
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jwk-loader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joakim Antman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-12 00:00:00.000000000 Z
11
+ date: 2022-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -53,7 +53,7 @@ metadata:
53
53
  allowed_push_host: https://rubygems.org
54
54
  homepage_uri: https://github.com/anakinj/jwk-loader
55
55
  source_code_uri: https://github.com/anakinj/jwk-loader
56
- changelog_uri: https://github.com/anakinj/jwk-loader/blob/0.1.0/CHANGELOG.md
56
+ changelog_uri: https://github.com/anakinj/jwk-loader/blob/0.1.1/CHANGELOG.md
57
57
  rubygems_mfa_required: 'true'
58
58
  post_install_message:
59
59
  rdoc_options: []