devise_g5_authenticatable 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +2 -2
- data/devise_g5_authenticatable.gemspec +7 -2
- data/lib/devise_g5_authenticatable/version.rb +1 -1
- metadata +11 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e876e0598bb033c7dfd71a0347876195f46d54f4
|
4
|
+
data.tar.gz: 484b9c0ddcdd2a097eccc75b75427c1b3e9b18d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 660c04a4ca12614fa1628508d8ab0e53c43fae373919a6b1f7624213fcfee6b428cbe692766b1c4df9a7cc26f1bd9a20559bf53d1d6d09ad13d400354b47faf4
|
7
|
+
data.tar.gz: f88074acc7025e35ec2fafe7fe3ba5a608f898a8a3fc9addb2ebb408536f0ef4e71f18bd809cccc84d85d51a0ed21dd7a36fa2a475c5e4a855ee5ac219f58063
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
## v0.2.3 (2015-11-30)
|
2
|
+
* Pins version of devise to 3.5.1 due - https://github.com/plataformatec/devise/issues/3705
|
3
|
+
* Pins version of omniauth-g5 to v0.3.1 due - https://github.com/G5/omniauth-g5/pull/10
|
4
|
+
|
1
5
|
## v0.2.1 (2015-05-28)
|
2
6
|
|
3
7
|
* Fixes for compatibility with
|
@@ -21,7 +25,7 @@
|
|
21
25
|
|
22
26
|
## v0.1.1 (2014-07-31)
|
23
27
|
|
24
|
-
* Find a user by email when a duplicate email exception is returned from
|
28
|
+
* Find a user by email when a duplicate email exception is returned from
|
25
29
|
user creation.
|
26
30
|
|
27
31
|
## v0.1.0 (2014-03-12)
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Devise G5 Authenticatable
|
2
2
|
|
3
3
|
Devise G5 Authenticatable extends devise to provide an
|
4
|
-
[OAuth 2.0](http://oauth.net/2)-based authentication strategy and remote
|
4
|
+
[OAuth 2.0](http://oauth.net/2)-based authentication strategy and remote
|
5
5
|
credential management via the G5 Auth service.
|
6
6
|
|
7
7
|
Devise G5 Authenticatable is intended as a drop-in replacement for the
|
@@ -10,7 +10,7 @@ G5 users.
|
|
10
10
|
|
11
11
|
## Current Version
|
12
12
|
|
13
|
-
0.2.
|
13
|
+
0.2.3
|
14
14
|
|
15
15
|
## Requirements
|
16
16
|
|
@@ -18,7 +18,12 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ['lib']
|
20
20
|
|
21
|
-
|
21
|
+
# Pinned to version 3.5.1 due https://github.com/plataformatec/devise/issues/3705
|
22
|
+
# "`FailureApp`s `script_name: nil` breaks route generation within mounted engines #3705"
|
23
|
+
spec.add_dependency 'devise', '= 3.5.1'
|
22
24
|
spec.add_dependency 'g5_authentication_client', '~> 0.5'
|
23
|
-
|
25
|
+
|
26
|
+
# Pinned to version 0.3.1 due https://github.com/G5/omniauth-g5/pull/10
|
27
|
+
# Omniauth-auth2 removed 'callback_url' which broke our auth workflow
|
28
|
+
spec.add_dependency 'omniauth-g5', '= 0.3.1'
|
24
29
|
end
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise_g5_authenticatable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maeve Revels
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: devise
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 3.5.1
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 3.5.1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: g5_authentication_client
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -42,16 +42,16 @@ dependencies:
|
|
42
42
|
name: omniauth-g5
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 0.3.1
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 0.3.1
|
55
55
|
description: Devise extension for the G5 Auth service
|
56
56
|
email:
|
57
57
|
- maeve.revels@getg5.com
|
@@ -293,3 +293,4 @@ test_files:
|
|
293
293
|
- spec/support/shared_examples/registration_error.rb
|
294
294
|
- spec/support/user_feature_methods.rb
|
295
295
|
- spec/tasks/export_users_spec.rb
|
296
|
+
has_rdoc:
|