pkce_oauth 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 97372c190ea0a108c58d6483b1671335b1825fc6ca1f33d09d9b979599c98498
4
+ data.tar.gz: 106a46dedb288e854afb0eb3a1a62cb0f4875c5d7799bb4f309e8b4139efa522
5
+ SHA512:
6
+ metadata.gz: 1ecc650d21e9a5fc2cdcc21725c198e61cc56da30a9e02398b859331430059484414bac55d84e35a5f6db272041ebaef392692c18b5a84ca4899fbb3ad7ee2f2
7
+ data.tar.gz: dafbd6198bf590d0067f58ba5268b4a12bf0d336b1b35203087ec03e7cf32bf0801e779ac9104ba0bf83e7811b53af4a3ada33e887d7b51bffeb4e2557eff087
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,8 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.0
3
+
4
+ Style/StringLiterals:
5
+ EnforcedStyle: double_quotes
6
+
7
+ Style/StringLiteralsInInterpolation:
8
+ EnforcedStyle: double_quotes
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2024-12-16
4
+
5
+ - Initial release
data/Cargo.lock ADDED
@@ -0,0 +1,347 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "bindgen"
16
+ version = "0.69.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
19
+ dependencies = [
20
+ "bitflags",
21
+ "cexpr",
22
+ "clang-sys",
23
+ "itertools",
24
+ "lazy_static",
25
+ "lazycell",
26
+ "proc-macro2",
27
+ "quote",
28
+ "regex",
29
+ "rustc-hash",
30
+ "shlex",
31
+ "syn",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "bitflags"
36
+ version = "2.6.0"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
39
+
40
+ [[package]]
41
+ name = "cexpr"
42
+ version = "0.6.0"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
45
+ dependencies = [
46
+ "nom",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "cfg-if"
51
+ version = "1.0.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
54
+
55
+ [[package]]
56
+ name = "clang-sys"
57
+ version = "1.8.1"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
60
+ dependencies = [
61
+ "glob",
62
+ "libc",
63
+ "libloading",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "either"
68
+ version = "1.13.0"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
71
+
72
+ [[package]]
73
+ name = "glob"
74
+ version = "0.3.1"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
77
+
78
+ [[package]]
79
+ name = "itertools"
80
+ version = "0.12.1"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
83
+ dependencies = [
84
+ "either",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "lazy_static"
89
+ version = "1.5.0"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
92
+
93
+ [[package]]
94
+ name = "lazycell"
95
+ version = "1.3.0"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
98
+
99
+ [[package]]
100
+ name = "libc"
101
+ version = "0.2.168"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d"
104
+
105
+ [[package]]
106
+ name = "libloading"
107
+ version = "0.8.6"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
110
+ dependencies = [
111
+ "cfg-if",
112
+ "windows-targets",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "magnus"
117
+ version = "0.6.4"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
120
+ dependencies = [
121
+ "magnus-macros",
122
+ "rb-sys",
123
+ "rb-sys-env",
124
+ "seq-macro",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "magnus-macros"
129
+ version = "0.6.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
132
+ dependencies = [
133
+ "proc-macro2",
134
+ "quote",
135
+ "syn",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "memchr"
140
+ version = "2.7.4"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
143
+
144
+ [[package]]
145
+ name = "minimal-lexical"
146
+ version = "0.2.1"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
149
+
150
+ [[package]]
151
+ name = "nom"
152
+ version = "7.1.3"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
155
+ dependencies = [
156
+ "memchr",
157
+ "minimal-lexical",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "pkce_oauth"
162
+ version = "0.1.0"
163
+ dependencies = [
164
+ "magnus",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "proc-macro2"
169
+ version = "1.0.92"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
172
+ dependencies = [
173
+ "unicode-ident",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "quote"
178
+ version = "1.0.37"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
181
+ dependencies = [
182
+ "proc-macro2",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "rb-sys"
187
+ version = "0.9.103"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "91dbe37ab6ac2fba187480fb6544b92445e41e5c6f553bf0c33743f3c450a1df"
190
+ dependencies = [
191
+ "rb-sys-build",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "rb-sys-build"
196
+ version = "0.9.103"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "c4d56a49dcb646b70b758789c0d16c055a386a4f2a3346333abb69850fa860ce"
199
+ dependencies = [
200
+ "bindgen",
201
+ "lazy_static",
202
+ "proc-macro2",
203
+ "quote",
204
+ "regex",
205
+ "shell-words",
206
+ "syn",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "rb-sys-env"
211
+ version = "0.1.2"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
214
+
215
+ [[package]]
216
+ name = "regex"
217
+ version = "1.11.1"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
220
+ dependencies = [
221
+ "aho-corasick",
222
+ "memchr",
223
+ "regex-automata",
224
+ "regex-syntax",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "regex-automata"
229
+ version = "0.4.9"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
232
+ dependencies = [
233
+ "aho-corasick",
234
+ "memchr",
235
+ "regex-syntax",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "regex-syntax"
240
+ version = "0.8.5"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
243
+
244
+ [[package]]
245
+ name = "rustc-hash"
246
+ version = "1.1.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
249
+
250
+ [[package]]
251
+ name = "seq-macro"
252
+ version = "0.3.5"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
255
+
256
+ [[package]]
257
+ name = "shell-words"
258
+ version = "1.1.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
261
+
262
+ [[package]]
263
+ name = "shlex"
264
+ version = "1.3.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
267
+
268
+ [[package]]
269
+ name = "syn"
270
+ version = "2.0.90"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
273
+ dependencies = [
274
+ "proc-macro2",
275
+ "quote",
276
+ "unicode-ident",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "unicode-ident"
281
+ version = "1.0.14"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
284
+
285
+ [[package]]
286
+ name = "windows-targets"
287
+ version = "0.52.6"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
290
+ dependencies = [
291
+ "windows_aarch64_gnullvm",
292
+ "windows_aarch64_msvc",
293
+ "windows_i686_gnu",
294
+ "windows_i686_gnullvm",
295
+ "windows_i686_msvc",
296
+ "windows_x86_64_gnu",
297
+ "windows_x86_64_gnullvm",
298
+ "windows_x86_64_msvc",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "windows_aarch64_gnullvm"
303
+ version = "0.52.6"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
306
+
307
+ [[package]]
308
+ name = "windows_aarch64_msvc"
309
+ version = "0.52.6"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
312
+
313
+ [[package]]
314
+ name = "windows_i686_gnu"
315
+ version = "0.52.6"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
318
+
319
+ [[package]]
320
+ name = "windows_i686_gnullvm"
321
+ version = "0.52.6"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
324
+
325
+ [[package]]
326
+ name = "windows_i686_msvc"
327
+ version = "0.52.6"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
330
+
331
+ [[package]]
332
+ name = "windows_x86_64_gnu"
333
+ version = "0.52.6"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
336
+
337
+ [[package]]
338
+ name = "windows_x86_64_gnullvm"
339
+ version = "0.52.6"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
342
+
343
+ [[package]]
344
+ name = "windows_x86_64_msvc"
345
+ version = "0.52.6"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
data/Cargo.toml ADDED
@@ -0,0 +1,7 @@
1
+ # This Cargo.toml is here to let externals tools (IDEs, etc.) know that this is
2
+ # a Rust project. Your extensions dependencies should be added to the Cargo.toml
3
+ # in the ext/ directory.
4
+
5
+ [workspace]
6
+ members = ["./ext/pkce_oauth"]
7
+ resolver = "2"
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Bogdanov Anton
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # PkceOauth
2
+
3
+
4
+
5
+ ## Installation
6
+
7
+ Install the gem and add to the application's Gemfile by executing:
8
+
9
+ ```bash
10
+ bundle add pkce_oauth
11
+ ```
12
+
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
14
+
15
+ ```bash
16
+ gem install pkce_oauth
17
+ ```
18
+
19
+ ## Usage
20
+
21
+
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/kortirso/pkce_oauth.
32
+
33
+ ## License
34
+
35
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require 'rubocop/rake_task'
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ require 'rb_sys/extensiontask'
13
+
14
+ task build: :compile
15
+
16
+ GEMSPEC = Gem::Specification.load('pkce_oauth.gemspec')
17
+
18
+ RbSys::ExtensionTask.new('pkce_oauth', GEMSPEC) do |ext|
19
+ ext.lib_dir = 'lib/pkce_oauth'
20
+ end
21
+
22
+ task default: %i[compile spec rubocop]
@@ -0,0 +1,13 @@
1
+ [package]
2
+ name = "pkce_oauth"
3
+ version = "0.1.0"
4
+ edition = "2021"
5
+ authors = ["Bogdanov Anton <kortirso@gmail.com>"]
6
+ license = "MIT"
7
+ publish = false
8
+
9
+ [lib]
10
+ crate-type = ["cdylib"]
11
+
12
+ [dependencies]
13
+ magnus = { version = "0.6.2" }
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "mkmf"
4
+ require "rb_sys/mkmf"
5
+
6
+ create_rust_makefile("pkce_oauth/pkce_oauth")
@@ -0,0 +1,12 @@
1
+ use magnus::{function, prelude::*, Error, Ruby};
2
+
3
+ fn hello(subject: String) -> String {
4
+ format!("Hello from Rust, {subject}!")
5
+ }
6
+
7
+ #[magnus::init]
8
+ fn init(ruby: &Ruby) -> Result<(), Error> {
9
+ let module = ruby.define_module("PkceOauth")?;
10
+ module.define_singleton_method("hello", function!(hello, 1))?;
11
+ Ok(())
12
+ }
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PkceOauth
4
+ VERSION = '0.1.0'
5
+ end
data/lib/pkce_oauth.rb ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'pkce_oauth/version'
4
+ require_relative 'pkce_oauth/pkce_oauth'
5
+
6
+ module PkceOauth
7
+ class Error < StandardError; end
8
+ # Your code goes here...
9
+ end
@@ -0,0 +1,4 @@
1
+ module PkceOauth
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pkce_oauth
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Bogdanov Anton
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-12-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rb_sys
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.9.91
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.9.91
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '13.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '13.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake-compiler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.2.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.2.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.39'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.39'
69
+ description: Code verifier and challenge generator for use in PKCE Oauth2.
70
+ email:
71
+ - kortirso@gmail.com
72
+ executables: []
73
+ extensions:
74
+ - ext/pkce_oauth/extconf.rb
75
+ extra_rdoc_files: []
76
+ files:
77
+ - ".rspec"
78
+ - ".rubocop.yml"
79
+ - CHANGELOG.md
80
+ - Cargo.lock
81
+ - Cargo.toml
82
+ - LICENSE.txt
83
+ - README.md
84
+ - Rakefile
85
+ - ext/pkce_oauth/Cargo.toml
86
+ - ext/pkce_oauth/extconf.rb
87
+ - ext/pkce_oauth/src/lib.rs
88
+ - lib/pkce_oauth.rb
89
+ - lib/pkce_oauth/version.rb
90
+ - sig/pkce_oauth.rbs
91
+ homepage: https://github.com/kortirso/pkce_oauth
92
+ licenses:
93
+ - MIT
94
+ metadata:
95
+ homepage_uri: https://github.com/kortirso/pkce_oauth
96
+ source_code_uri: https://github.com/kortirso/pkce_oauth
97
+ changelog_uri: https://github.com/kortirso/pkce_oauth/blob/master/CHANGELOG.md
98
+ post_install_message:
99
+ rdoc_options: []
100
+ require_paths:
101
+ - lib
102
+ required_ruby_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: 3.0.0
107
+ required_rubygems_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: 3.3.11
112
+ requirements: []
113
+ rubygems_version: 3.4.1
114
+ signing_key:
115
+ specification_version: 4
116
+ summary: PKCE Oauth2
117
+ test_files: []