rodauth-oauth 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "rodauth"
4
+
5
+ require "rodauth/oauth/version"
6
+
7
+ require "rodauth/oauth/railtie" if defined?(Rails)
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rodauth
4
+ module OAuth
5
+ class Railtie < ::Rails::Railtie
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rodauth
4
+ module OAuth
5
+ VERSION = "0.0.1"
6
+ end
7
+ end
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: []