omniauth-saml-rmunify 2.0.0 → 2.0.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 CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MjM3ZDIyODhkZmE3YmYyZTNjZWRkNWM2N2Q0NTgxYzUyNmE4Y2JlNg==
5
- data.tar.gz: !binary |-
6
- OThlYTM2MzM3NGY4OWUzNGU5NDk2YmUzNjQ2MDQ1MjIyY2ZhMDBiOA==
2
+ SHA1:
3
+ metadata.gz: 420ec8e707d36d1d1f18bf0860ef71d95bce30cc
4
+ data.tar.gz: 60a8278bf078962c1aab47c7f5bd2c43c761229f
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- ZmU3YzFhNjA2MWFmYmE4OGNmNzAwYTE1NmM4MjI1NjRiNGRkM2ZhMGFjNjll
10
- MDYyMGVlMDQ1YWQzYjIzZGVlN2E4MDU5YWRjODkzMGRmMDY5MjlmMGVmMjU3
11
- YTE5MTVhN2M2NDgyNmU2NjZjN2UxMGE0OWY3NTFlOGY3YTBhNTk=
12
- data.tar.gz: !binary |-
13
- NmUyMzI4ODVhZGRhOGQ4NjhiOWU4MzA2Y2IyYjE5MThiNTVlMWQ0NmY4ZTFk
14
- MDBjZTJhNzI1YmNjYWVhZTIxOTBmNzAyOWIxM2U2YjAwODM2MzljYzEyODIw
15
- Yzc1YzQ0MjkzNWI3MjNmODQ0MTE2OWJhMWRmMmVhM2E4NWVhZTM=
6
+ metadata.gz: a3f532a035445386f1e9f12fc514e7da06fd5a2afd69acdc09396b792a95c275a8816a690e9d7967dd42c4207f77e0c19db92c03f48687553acf0fc3268c39a3
7
+ data.tar.gz: b1c9e2a0ad382b6f4a089a002cd472b9b9924257f174a4d8f9f5ee1fcfef07cf1b764452b8eb58b5b75310327951bb8208a440af57675ea11b911f01fc58974b
@@ -6,6 +6,10 @@ https://github.com/hampei/omniauth-saml-rmunify
6
6
 
7
7
  ## master
8
8
 
9
+ ## 2.0.1 (2014-07-10)
10
+
11
+ * Fixed possible error when displayname, username nor firstname are all not available in the callback.
12
+
9
13
  ## 2.0.0 (2014-02-17)
10
14
 
11
15
  * Added app_licence underscore hash keys.
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
2
  module SAMLRMUnify
3
- VERSION = '2.0.0'
3
+ VERSION = '2.0.1'
4
4
  end
5
5
  end
@@ -11,7 +11,7 @@ module OmniAuth
11
11
  :email => @attributes['urn:oid:0.9.2342.19200300.100.1.3'],
12
12
  :name => @attributes['urn:oid:2.16.840.1.113730.3.1.241'] ||
13
13
  @attributes['http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name'] ||
14
- @attributes['urn:oid:2.5.4.42'] + ' ' + @attributes['urn:oid:2.5.4.4'],
14
+ "#{@attributes['urn:oid:2.5.4.42']} #{@attributes['urn:oid:2.5.4.4']}",
15
15
  :nickname => @attributes['http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name'],
16
16
  :first_name => @attributes['urn:oid:2.5.4.42'],
17
17
  :last_name => @attributes['urn:oid:2.5.4.4'],
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-saml-rmunify
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henk van der Veen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-16 00:00:00.000000000 Z
11
+ date: 2014-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth-saml
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: 1.1.0
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
26
  version: 1.1.0
27
27
  description: An RMUnify SAML strategy for OmniAuth.
@@ -30,11 +30,11 @@ executables: []
30
30
  extensions: []
31
31
  extra_rdoc_files: []
32
32
  files:
33
- - README.md
34
33
  - CHANGELOG.md
35
- - lib/omniauth/strategies/saml-rmunify.rb
36
- - lib/omniauth-saml-rmunify/version.rb
34
+ - README.md
37
35
  - lib/omniauth-saml-rmunify.rb
36
+ - lib/omniauth-saml-rmunify/version.rb
37
+ - lib/omniauth/strategies/saml-rmunify.rb
38
38
  homepage: https://github.com/hampei/omniauth-saml-rmunify
39
39
  licenses:
40
40
  - MIT
@@ -45,17 +45,17 @@ require_paths:
45
45
  - lib
46
46
  required_ruby_version: !ruby/object:Gem::Requirement
47
47
  requirements:
48
- - - ! '>='
48
+ - - ">="
49
49
  - !ruby/object:Gem::Version
50
50
  version: '0'
51
51
  required_rubygems_version: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ! '>='
53
+ - - ">="
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
56
  requirements: []
57
57
  rubyforge_project:
58
- rubygems_version: 2.1.10
58
+ rubygems_version: 2.2.2
59
59
  signing_key:
60
60
  specification_version: 4
61
61
  summary: A custom info auth hash translating the rm unify attributes. Subclass of