pkce 1.0.5 → 1.0.6

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: 720cd2e1ff54c9777916774e7fb990deea80d3dee88e9693a85147dc4198cdc9
4
- data.tar.gz: f09ea135541061e7dccb72320b07d595d7718a5141018ef9d92352d517f10910
3
+ metadata.gz: 476bffbcb59b76f7a1b7f5fae4a6c68382bde85da852a04bf5cfb39a259daf73
4
+ data.tar.gz: f066f90c5fc508ab2a7446f39781b43bc1fcd13c3f52c72bb037ebdf9f65edec
5
5
  SHA512:
6
- metadata.gz: 7d80682b3599427d7beefaf06738c44206bf8b8d390a1b355f625ee726e1faf0291cbab51240a303435b335155f445d801366a582ad851d29c2fcd6f79d73cea
7
- data.tar.gz: 535fc10b7169bd6abbab55296528c7d70b1341312d4d67e4602d8c86f864f0407d20dff28a3da5b9e432475339935658ff5ccbba664e4eb317254c7e22b90e51
6
+ metadata.gz: 6ad6a6f918e68c968a0c0e98ba211612847aa7cae5a7c910201e46975109e8ea45d220fb47937b8a1338e27f742d1522d1e906ca968cc1a4ad027d1f6b996c96
7
+ data.tar.gz: b5412f05d56b53fdd681600a138107691ec085276c80f715a15540e85c305027293516d401da90f3a363426c89c27b62c8a3339ffb00df1eeeb761a2c7717565
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -29,11 +29,34 @@ toc::[]
29
29
 
30
30
  == Setup
31
31
 
32
- To set up the project, run:
32
+ To install _with_ security, run:
33
33
 
34
34
  [source,bash]
35
35
  ----
36
- bin/setup
36
+ # 💡 Skip this line if you already have the public certificate installed.
37
+ gem cert --add <(curl --compressed --location https://alchemists.io/gems.pem)
38
+ gem install pkce --trust-policy HighSecurity
39
+ ----
40
+
41
+ To install _without_ security, run:
42
+
43
+ [source,bash]
44
+ ----
45
+ gem install pkce
46
+ ----
47
+
48
+ You can also add the gem directly to your project:
49
+
50
+ [source,bash]
51
+ ----
52
+ bundle add pkce
53
+ ----
54
+
55
+ Once the gem is installed, you only need to require it:
56
+
57
+ [source,ruby]
58
+ ----
59
+ require "pkce"
37
60
  ----
38
61
 
39
62
  == Usage
data/pkce.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "pkce"
5
- spec.version = "1.0.5"
5
+ spec.version = "1.0.6"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
8
  spec.homepage = "https://alchemists.io/projects/pkce"
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.signing_key = Gem.default_key_path
23
23
  spec.cert_chain = [Gem.default_cert_path]
24
24
 
25
- spec.required_ruby_version = "~> 3.2"
25
+ spec.required_ruby_version = [">= 3.2", "<= 3.3"]
26
26
  spec.add_dependency "dry-monads", "~> 1.6"
27
27
 
28
28
  spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pkce
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -35,7 +35,7 @@ cert_chain:
35
35
  3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
36
36
  gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
37
37
  -----END CERTIFICATE-----
38
- date: 2023-10-16 00:00:00.000000000 Z
38
+ date: 2023-11-16 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: dry-monads
@@ -85,16 +85,19 @@ require_paths:
85
85
  - lib
86
86
  required_ruby_version: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - "~>"
88
+ - - ">="
89
89
  - !ruby/object:Gem::Version
90
90
  version: '3.2'
91
+ - - "<="
92
+ - !ruby/object:Gem::Version
93
+ version: '3.3'
91
94
  required_rubygems_version: !ruby/object:Gem::Requirement
92
95
  requirements:
93
96
  - - ">="
94
97
  - !ruby/object:Gem::Version
95
98
  version: '0'
96
99
  requirements: []
97
- rubygems_version: 3.4.20
100
+ rubygems_version: 3.4.22
98
101
  signing_key:
99
102
  specification_version: 4
100
103
  summary: An OAuth Proof Key for Code Exchange (PKCE) challenge and code verifier.
metadata.gz.sig CHANGED
Binary file