omniauth-socialcast-oauth2 0.0.2 → 0.0.2.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.
- checksums.yaml +4 -4
- data/README.md +5 -3
- data/lib/omniauth-socialcast-oauth2/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7d590549cc7e3e1bd7fb7399357beff9a79f27e
|
4
|
+
data.tar.gz: 42faa5f7856121a3a3fcaebc34d0711cac301564
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 103a489622bf6b2b5b85b86c476e5d74397be2b71327ee81a19e9ad2b19e3c447ea940fdcf19712548a0170e47f7d7b245d8a5afe4b28a611bf981391bb20a71
|
7
|
+
data.tar.gz: d1d68c0d80412c29aefa328d5d8d06d31552236274b4be9ada87c0d31e0c1eefc2ae6013598b36577e5c6537b0eea72d47fc42301bc749f00365b60d66a9aa56
|
data/README.md
CHANGED
@@ -22,7 +22,7 @@ Example usage in a rails application
|
|
22
22
|
|
23
23
|
This code block has to be added in the omniauth.rb file in initializers folder
|
24
24
|
|
25
|
-
```
|
25
|
+
```ruby
|
26
26
|
require 'omniauth'
|
27
27
|
require 'omniauth-socialcast-oauth2'
|
28
28
|
|
@@ -33,8 +33,10 @@ Rails.application.config.middleware.use OmniAuth::Builder do
|
|
33
33
|
end
|
34
34
|
```
|
35
35
|
|
36
|
-
The application authentication url is handled at http
|
37
|
-
|
36
|
+
The application authentication url is handled at http://www.yourrailsapp.com/auth/socialcast
|
37
|
+
and the callback url is http://www.yourrailsapp.com/auth/callback.
|
38
|
+
|
39
|
+
Please ask the site administrator to enter the redirect url while registering the app.
|
38
40
|
|
39
41
|
## Contributing
|
40
42
|
|