openauth-roda 0.10.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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +7 -0
  3. data/README.md +19 -0
  4. data/lib/openauth/roda.rb +9 -0
  5. metadata +60 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1450eda6430c7a22e560ffb57951345254f58e5172965ea782ecfaf079a79490
4
+ data.tar.gz: b8311cb5527270cd5ceb7b9dc0832026eea682d22519f1ca34f357521fad8560
5
+ SHA512:
6
+ metadata.gz: 10ecef2930b36f3028d1a0ed49447dab967fa94a52216dd82fee2871fc394b9540d65409b26cf23b5259de9b1c2820a75db92d08a78c189e6bd963bb25c5b8d4
7
+ data.tar.gz: 6dbffdaa1afa7bdd2cda14bbd54628c68d5aa624193182098cd730da4db2ce0ff8b841c7137ce8d2d6e1d7b14170be7966f5a30de8c56b6c6ba2e75405d93032
data/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # Changelog
2
+
3
+ ## Unreleased
4
+
5
+ ## 0.10.0
6
+
7
+ - Initial OpenAuth alias package for `better_auth-roda`.
data/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # openauth-roda
2
+
3
+ Alias package for `better_auth-roda`.
4
+
5
+ ## Installation
6
+
7
+ ```ruby
8
+ gem "openauth-roda"
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ruby
14
+ require "openauth/roda"
15
+ ```
16
+
17
+ This package depends on `better_auth-roda` and loads the canonical Better Auth Ruby Roda integration.
18
+
19
+ See the documentation at https://better-auth-rb.vercel.app/.
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "openauth"
4
+ require "better_auth/roda"
5
+
6
+ module OpenAuth
7
+ Roda = BetterAuth::Roda unless const_defined?(:Roda, false)
8
+ alias_better_auth_constants!
9
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: openauth-roda
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.10.0
5
+ platform: ruby
6
+ authors:
7
+ - Sebastian Sala
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: better_auth-roda
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - '='
17
+ - !ruby/object:Gem::Version
18
+ version: 0.10.0
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - '='
24
+ - !ruby/object:Gem::Version
25
+ version: 0.10.0
26
+ description: OpenAuth Roda alias package that installs better_auth-roda.
27
+ email:
28
+ - sebastian.sala.tech@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - CHANGELOG.md
34
+ - README.md
35
+ - lib/openauth/roda.rb
36
+ homepage: https://better-auth-rb.vercel.app/
37
+ licenses:
38
+ - MIT
39
+ metadata:
40
+ homepage_uri: https://better-auth-rb.vercel.app/
41
+ source_code_uri: https://github.com/sebasxsala/better-auth-rb
42
+ bug_tracker_uri: https://github.com/sebasxsala/better-auth-rb/issues
43
+ rdoc_options: []
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 3.2.0
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ requirements: []
57
+ rubygems_version: 3.6.9
58
+ specification_version: 4
59
+ summary: Alias package for better_auth-roda
60
+ test_files: []