omniauth-liblynx 1.0.2 → 1.0.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/.travis.yml +1 -0
- data/Gemfile.lock +2 -2
- data/lib/omniauth-liblynx/version.rb +3 -1
- data/lib/omniauth/strategies/liblynx.rb +3 -1
- data/omniauth-liblynx.gemspec +1 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdbdfaa89ecedc832f49710fe7c2c37a9bca18808d3e08b44489480b7cba9815
|
|
4
|
+
data.tar.gz: c80ab2e00e9fce1411b988e412a37b867c4fc54250bbf6819cf599bf6c5f5d1c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: daac84ca82f1764e2bd28338d1f92cd4a2b94ae924df55e907c703aa65c7890f34c909b8574c52102d499b5234c2651407989679cc725f1f034273a0966ce394
|
|
7
|
+
data.tar.gz: 640f780a371bccf35a716a50b467c7b7ea3550269a9606691771f425b213204f29189b14fcb27690d53cb10e1567e6196cc8608df801216563424a0b649a7c42
|
data/.travis.yml
CHANGED
|
@@ -4,4 +4,5 @@ deploy:
|
|
|
4
4
|
secure: s5y9lrj7GWE2rz4U7Eh9It12Sem2bGeuapqdnj8VDoeOfTacRXS+iIcVN/D/xsvi7Pg3oNQRBSz0Ar/5gsK9CEDznHJ0nlth6ocqHqoOy3cDf1eGE5nz/T8Wx67sL73Q5UpYPReWZ0XXm+66ywLOQI+mXUct+iA5FSpBLRzalcS+o0ICtxFOxPZ6XouwjHKjNf4rCFYRvKAKO3rLvH4dzPdQotQ+DSaXtTmzUFANF0HuTcaAEmpNm/VjJ4B8S9WvcYU7vyuThxu5LBBzp33eMTzHSSjKg3QCTzYaJ26dN8TAxhVITwPq8Y3LuqWs8wf0xcUi0t5VokORneAlnSz0oEbDYC6x8gNaJGCszKGQ8nmECB0+cVLF5rxm5ehVIOs+VYgViOn8RinqrqTSCym3FwierA4WfO/6B/xfvRqAk6zd/qJhDjaPChdBM39o5Qs/79avmk9/xWWHTfDZppy7BZ3Hj7R55Zk9x+SUdPP3nMyhNKsbhmTU5jX+4c/7m5tvidz78f5hLIjVrfRmggdZjnqe+lo63rqzprwXCshrpwfv0jvWHZ0LbE+hFfMVfi2xoM8OJNe3ncG1qWeM+Cz4ANjN3E2m2mQcehrWzBFOvP7LWqrHY/MseY1SGrOzJdQ2NuVkwt8UFAj9zWu0/58dPhV6OuDMfjPfmz/CKP5PVHg=
|
|
5
5
|
gem: omniauth-liblynx
|
|
6
6
|
on:
|
|
7
|
+
tags: true
|
|
7
8
|
repo: dsablic/omniauth-liblynx
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
omniauth-liblynx (1.0.
|
|
4
|
+
omniauth-liblynx (1.0.3)
|
|
5
5
|
omniauth (~> 1.5)
|
|
6
6
|
omniauth-oauth2 (>= 1.4.0, < 2.0)
|
|
7
7
|
|
|
@@ -27,7 +27,7 @@ GEM
|
|
|
27
27
|
omniauth-oauth2 (1.5.0)
|
|
28
28
|
oauth2 (~> 1.1)
|
|
29
29
|
omniauth (~> 1.2)
|
|
30
|
-
rack (2.0.
|
|
30
|
+
rack (2.0.4)
|
|
31
31
|
rake (10.5.0)
|
|
32
32
|
|
|
33
33
|
PLATFORMS
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
require 'omniauth-oauth2'
|
|
2
4
|
|
|
3
5
|
module OmniAuth
|
|
@@ -31,7 +33,7 @@ module OmniAuth
|
|
|
31
33
|
uid { raw_info['id'] }
|
|
32
34
|
|
|
33
35
|
info do
|
|
34
|
-
i = raw_info['individual']
|
|
36
|
+
i = raw_info['individual'] || {}
|
|
35
37
|
{
|
|
36
38
|
'email' => id_body[:email],
|
|
37
39
|
'institution' => request.params['institution'],
|
data/omniauth-liblynx.gemspec
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
# -*- encoding: utf-8 -*-
|
|
3
1
|
require File.expand_path('../lib/omniauth-liblynx/version', __FILE__)
|
|
4
2
|
|
|
5
3
|
Gem::Specification.new do |gem|
|
|
@@ -9,7 +7,7 @@ Gem::Specification.new do |gem|
|
|
|
9
7
|
gem.summary = 'OmniAuth strategy for LibLynx'
|
|
10
8
|
gem.license = 'MIT'
|
|
11
9
|
|
|
12
|
-
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
10
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
13
11
|
gem.files = `git ls-files`.split("\n")
|
|
14
12
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
15
13
|
gem.name = 'omniauth-liblynx'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-liblynx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Denis Sablic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|