rodauth-oauth 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +5 -0
- data/README.md +333 -0
- data/lib/generators/roda/oauth/install_generator.rb +47 -0
- data/lib/generators/roda/oauth/templates/app/models/oauth_application.rb +4 -0
- data/lib/generators/roda/oauth/templates/app/models/oauth_grant.rb +4 -0
- data/lib/generators/roda/oauth/templates/app/models/oauth_token.rb +4 -0
- data/lib/generators/roda/oauth/templates/db/migrate/create_rodauth_oauth.rb +47 -0
- data/lib/generators/roda/oauth/views_generator.rb +54 -0
- data/lib/rodauth/features/oauth.rb +802 -0
- data/lib/rodauth/oauth.rb +7 -0
- data/lib/rodauth/oauth/railtie.rb +8 -0
- data/lib/rodauth/oauth/version.rb +7 -0
- metadata +59 -0
metadata
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rodauth-oauth
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tiago Cardoso
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-05-27 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Implementation of the OAuth 2.0 protocol on top of rodauth.
|
14
|
+
email:
|
15
|
+
- cardoso_tiago@hotmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files:
|
19
|
+
- README.md
|
20
|
+
- CHANGELOG.md
|
21
|
+
files:
|
22
|
+
- CHANGELOG.md
|
23
|
+
- README.md
|
24
|
+
- lib/generators/roda/oauth/install_generator.rb
|
25
|
+
- lib/generators/roda/oauth/templates/app/models/oauth_application.rb
|
26
|
+
- lib/generators/roda/oauth/templates/app/models/oauth_grant.rb
|
27
|
+
- lib/generators/roda/oauth/templates/app/models/oauth_token.rb
|
28
|
+
- lib/generators/roda/oauth/templates/db/migrate/create_rodauth_oauth.rb
|
29
|
+
- lib/generators/roda/oauth/views_generator.rb
|
30
|
+
- lib/rodauth/features/oauth.rb
|
31
|
+
- lib/rodauth/oauth.rb
|
32
|
+
- lib/rodauth/oauth/railtie.rb
|
33
|
+
- lib/rodauth/oauth/version.rb
|
34
|
+
homepage: https://gitlab.com/honeyryderchuck/roda-oauth
|
35
|
+
licenses: []
|
36
|
+
metadata:
|
37
|
+
homepage_uri: https://gitlab.com/honeyryderchuck/roda-oauth
|
38
|
+
source_code_uri: https://gitlab.com/honeyryderchuck/roda-oauth
|
39
|
+
changelog_uri: https://gitlab.com/honeyryderchuck/roda-oauth/-/blob/master/CHANGELOG.md
|
40
|
+
post_install_message:
|
41
|
+
rdoc_options: []
|
42
|
+
require_paths:
|
43
|
+
- lib
|
44
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
requirements: []
|
55
|
+
rubygems_version: 3.1.2
|
56
|
+
signing_key:
|
57
|
+
specification_version: 4
|
58
|
+
summary: Implementation of the OAuth 2.0 protocol on top of rodauth.
|
59
|
+
test_files: []
|