keycloak_oauth 1.0.0 → 1.1.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 +4 -4
- data/README.md +4 -6
- data/lib/keycloak_oauth/version.rb +1 -1
- metadata +45 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a496f5188659a5cc6df091b040a10fea32e0f3f471144e3b70c61938258c03d0
|
4
|
+
data.tar.gz: 594013ab742d6c3f8070b549ec47e692f6b5e2f7f5d2b370153af05858169007
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 192606c85a86c75885da5117fead95dabb1f19ed1ad0bf926e353e5ceae893d6ab40e6b80c0355cd1156045c47ce4c972ae825cca62dcb5758fe708a7e4d7446
|
7
|
+
data.tar.gz: 2e71b194442e2a76c207bb528f27de8e243a8b86d27ad575d896ac0d0996b68ca69dfd40ef89f340ce7340efedf3ebc75b1325d7d9cad1a0e1ed092aec6826b2
|
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# KeycloakOauth
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
[Keycloak](https://www.keycloak.org) integration for Ruby on Rails.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
@@ -64,7 +62,7 @@ If you need the user to be redirected to something other than the root path, you
|
|
64
62
|
3. In the method, perform whatever logic you need to return the right path e.g.
|
65
63
|
```ruby
|
66
64
|
def after_sign_in_path
|
67
|
-
my_custom_path
|
65
|
+
main_app.my_custom_path
|
68
66
|
end
|
69
67
|
```
|
70
68
|
4. Tell the gem where you've overridden the paths by setting the following config in your configuration initializer file:
|
@@ -112,7 +110,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
112
110
|
|
113
111
|
## Contributing
|
114
112
|
|
115
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
113
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/simplificator/keycloak_oauth. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/simplificator/keycloak_oauth/blob/master/CODE_OF_CONDUCT.md).
|
116
114
|
|
117
115
|
|
118
116
|
## License
|
@@ -121,4 +119,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
121
119
|
|
122
120
|
## Code of Conduct
|
123
121
|
|
124
|
-
Everyone interacting in the KeycloakOauth project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
122
|
+
Everyone interacting in the KeycloakOauth project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/simplificator/keycloak_oauth/blob/master/CODE_OF_CONDUCT.md).
|
metadata
CHANGED
@@ -1,35 +1,71 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: keycloak_oauth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- simplificator
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 6.0.3
|
20
17
|
- - ">="
|
21
18
|
- !ruby/object:Gem::Version
|
22
|
-
version: 6.0
|
19
|
+
version: '6.0'
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
|
-
- - "
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '6.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activerecord-session_store
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
28
39
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: appraisal
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
30
45
|
- - ">="
|
31
46
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: combustion
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
33
69
|
- !ruby/object:Gem::Dependency
|
34
70
|
name: rspec-rails
|
35
71
|
requirement: !ruby/object:Gem::Requirement
|