omniauth-roblox 0.0.4 → 0.0.5
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 +4 -4
- data/LICENSE +1 -1
- data/README.md +4 -2
- data/lib/omniauth-roblox/version.rb +1 -1
- data/lib/omniauth-roblox.rb +1 -1
- data/omniauth-roblox.gemspec +2 -2
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4038c5ff1579ddb524418eb0b7468aac225972a22ebe67a60885594bf7eec0be
|
4
|
+
data.tar.gz: 0ffe9cf04235012e248976bbef42fb6a52ddd1f80a9ba595e354a11463658a8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19da18b3bd8b549d8336b07c95f2e022a6f7770c7b471326cf5530a6c5c2c3247ca746a4bee17876e274e11a8cad0ab754c9b4a2e47e6adcda71a83c2a65c547
|
7
|
+
data.tar.gz: c655658d0cf2e73045aac2c50dd506aae62805897d0f86bc427a929de43b444a11a6358b27f3a85f92103067dccda08e671eabed1c97bbf5c4a171d5a232bb5d
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -9,10 +9,12 @@ gem 'omniauth-roblox'
|
|
9
9
|
Run `bundle install`
|
10
10
|
|
11
11
|
## Setup
|
12
|
-
|
12
|
+
Roblox's OAuth API is now public, although your account must be ID verified to utilize it.
|
13
13
|
|
14
|
-
-
|
14
|
+
- Verify your Roblox account in settings if needed
|
15
|
+
- Go to https://create.roblox.com/dashboard/credentials?activeTab=OAuthTab
|
15
16
|
- Fill out the fields and select your scopes
|
17
|
+
- Publish your app
|
16
18
|
|
17
19
|
## Usage
|
18
20
|
An example of adding this middleware to your Rails app in `config/initializers/omniauth.rb`
|
data/lib/omniauth-roblox.rb
CHANGED
data/omniauth-roblox.gemspec
CHANGED
@@ -3,9 +3,9 @@
|
|
3
3
|
require File.expand_path('lib/omniauth-roblox/version', __dir__)
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
|
-
gem.authors = ['
|
6
|
+
gem.authors = ['Regalijan']
|
7
7
|
gem.files = `git ls-files`.split("\n")
|
8
|
-
gem.homepage = 'https://github.com/
|
8
|
+
gem.homepage = 'https://github.com/Regalijan/omniauth-roblox'
|
9
9
|
gem.license = 'MIT'
|
10
10
|
gem.name = 'omniauth-roblox'
|
11
11
|
gem.required_ruby_version = '>= 2.7.2'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-roblox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
autorequire:
|
7
|
+
- Regalijan
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: omniauth
|
@@ -38,8 +38,8 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.8'
|
41
|
-
description:
|
42
|
-
email:
|
41
|
+
description:
|
42
|
+
email:
|
43
43
|
executables: []
|
44
44
|
extensions: []
|
45
45
|
extra_rdoc_files: []
|
@@ -53,11 +53,11 @@ files:
|
|
53
53
|
- lib/omniauth-roblox/omniauth/strategies/roblox.rb
|
54
54
|
- lib/omniauth-roblox/version.rb
|
55
55
|
- omniauth-roblox.gemspec
|
56
|
-
homepage: https://github.com/
|
56
|
+
homepage: https://github.com/Regalijan/omniauth-roblox
|
57
57
|
licenses:
|
58
58
|
- MIT
|
59
59
|
metadata: {}
|
60
|
-
post_install_message:
|
60
|
+
post_install_message:
|
61
61
|
rdoc_options: []
|
62
62
|
require_paths:
|
63
63
|
- lib
|
@@ -72,8 +72,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
72
|
- !ruby/object:Gem::Version
|
73
73
|
version: '0'
|
74
74
|
requirements: []
|
75
|
-
rubygems_version: 3.
|
76
|
-
signing_key:
|
75
|
+
rubygems_version: 3.0.3.1
|
76
|
+
signing_key:
|
77
77
|
specification_version: 4
|
78
78
|
summary: OmniAuth strategy for Roblox
|
79
79
|
test_files: []
|