openauth-sinatra 0.7.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: e122ad805e677d8722b942b19c0cde760f623965ea6a1a743482aae8a025903e
4
+ data.tar.gz: ace0093fc798e3870a9d10b1b4aa45788258dfe4130be54f1df66dc10a87bf98
5
+ SHA512:
6
+ metadata.gz: e32dbc6d3693cad115dcb22166eb3ff1e672e03fb566bc0bda0b41272d106216e08ed92aa67175978140ff0947f15aa6531857e94ac6b6a0472736b9bfeb47d1
7
+ data.tar.gz: e4cc17d1a6d2913ad6adc6e6e43f4763f7f725c2b12919feec22a5c8dcee28b1756ea00d95025208958f53489c975f89ecc185eed920452a442a9706f115fd5a
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## 0.7.0
4
+
5
+ - Initial alias package for `better_auth-sinatra`.
data/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # openauth-sinatra
2
+
3
+ Alias package for `better_auth-sinatra`.
4
+
5
+ ## Installation
6
+
7
+ ```ruby
8
+ gem "openauth-sinatra"
9
+ ```
10
+
11
+ ```ruby
12
+ require "openauth/sinatra"
13
+ ```
14
+
15
+ This package depends on `better_auth-sinatra` and loads the canonical Better Auth Ruby Sinatra extension.
16
+
17
+ For documentation, visit https://better-auth-rb.vercel.app/.
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "openauth"
4
+ require "better_auth/sinatra"
5
+
6
+ module OpenAuth
7
+ Sinatra = BetterAuth::Sinatra unless const_defined?(:Sinatra, false)
8
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: openauth-sinatra
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.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-sinatra
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - '='
17
+ - !ruby/object:Gem::Version
18
+ version: 0.7.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.7.0
26
+ description: OpenAuth Sinatra alias package that installs better_auth-sinatra.
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/sinatra.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
42
+ bug_tracker_uri: https://github.com/sebasxsala/better-auth/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-sinatra
60
+ test_files: []