g5_authenticatable 0.7.2 → 0.7.3
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/CHANGELOG.md +4 -0
- data/README.md +2 -2
- data/g5_authenticatable.gemspec +2 -2
- data/lib/g5_authenticatable/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f56baf7ccaaf8080ddb8287e138495c535a7b5c0
|
|
4
|
+
data.tar.gz: feecc8d4ec69a2985e6ee769a0b0bb20614e30a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e14a0afcdb5e18630e445914817541d0df7cadc7f55cb0e877b489f129b865aa3130e202d04bc349044aa84e4ad78b61653fc6ff36b5f6d178caae85073d7ec
|
|
7
|
+
data.tar.gz: f2cffe7568ac42aae42e3f71f8942224109ef6c8855717e96658bb8f487c08aa76c12ad8c7f8937672024b859a12bf72ca74647b2cbcb9227ce8f78255a63911
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## v0.7.3 (2015-11-30)
|
|
2
|
+
* Upgrade to devise_g5_authenticatable to fix regression bug https://github.com/G5/devise_g5_authenticatable/pull/23
|
|
3
|
+
* Upgrade to omniauth_g5 to fix regression bug https://github.com/G5/omniauth-g5/pull/10
|
|
4
|
+
|
|
1
5
|
## v0.7.0 (2015-06-04)
|
|
2
6
|
|
|
3
7
|
* Add convenience methods to `G5Authenticatable::User`, as well as a
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# G5 Authenticatable
|
|
2
2
|
|
|
3
3
|
G5 Authenticatable provides a default authentication solution for G5
|
|
4
|
-
Rails applications. This gem configures and mounts
|
|
4
|
+
Rails applications. This gem configures and mounts
|
|
5
5
|
[Devise](https://github.com/plataformatec/devise) with a default User
|
|
6
6
|
model, using [OmniAuth](https://github.com/intridea/omniauth) to authenticate
|
|
7
7
|
to the G5 Auth server. Helpers are also provided to secure your API methods.
|
|
@@ -18,7 +18,7 @@ library in isolation.
|
|
|
18
18
|
|
|
19
19
|
## Current Version
|
|
20
20
|
|
|
21
|
-
0.7.
|
|
21
|
+
0.7.3
|
|
22
22
|
|
|
23
23
|
## Requirements
|
|
24
24
|
|
data/g5_authenticatable.gemspec
CHANGED
|
@@ -20,8 +20,8 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
21
21
|
spec.require_paths = ['lib']
|
|
22
22
|
|
|
23
|
-
spec.add_dependency 'devise_g5_authenticatable', '~> 0.2.
|
|
24
|
-
spec.add_dependency 'omniauth-g5', '~> 0.3'
|
|
23
|
+
spec.add_dependency 'devise_g5_authenticatable', '~> 0.2.3'
|
|
24
|
+
spec.add_dependency 'omniauth-g5', '~> 0.3.1'
|
|
25
25
|
spec.add_dependency 'g5_authenticatable_api', '~> 0.4.1'
|
|
26
26
|
spec.add_dependency 'rolify', '~> 4.0'
|
|
27
27
|
spec.add_dependency 'pundit', '~> 1.0'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: g5_authenticatable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- maeve
|
|
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_g5_authenticatable
|
|
@@ -16,28 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.2.
|
|
19
|
+
version: 0.2.3
|
|
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: 0.2.
|
|
26
|
+
version: 0.2.3
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: omniauth-g5
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 0.3.1
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
40
|
+
version: 0.3.1
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: g5_authenticatable_api
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -368,3 +368,4 @@ test_files:
|
|
|
368
368
|
- spec/support/shared_examples/super_admin_authorizer.rb
|
|
369
369
|
- spec/support/token_validation.rb
|
|
370
370
|
- spec/tasks/purge_users_spec.rb
|
|
371
|
+
has_rdoc:
|