omniauth-liblynx 1.0.7 → 1.0.8

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,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00ed6889932a923256c56d560c959a39664288fb685fcfba9780d72f34fbbebc
4
- data.tar.gz: abe2d5b9768cb56bc3c2df2208ca8b1346eebc9009a7aee677415cb6b404687b
3
+ metadata.gz: a17f936b894b436d1a35a77e3ed1252c1de901c110fa67cd4752333f701e9229
4
+ data.tar.gz: ab351936c4934576e64ada00a5a121743337e04d1bda2a7e512f51ac2aafe132
5
5
  SHA512:
6
- metadata.gz: 86ddac571602f5993ee8fbdb5e967361a77d49768cbceba863a405dfc05b76479007464be42f71e6aaf2011cf3f0b7de468b93a11f1bf5203c134f881e499b35
7
- data.tar.gz: 915fd55927b75b8a3cff8ac96ac59966878e183a1100ddecd0cca08198c3573f523f63c3ca6dab21a273934f67ef4adcbe8d3c1b4432defcab2e8c3978ffe9da
6
+ metadata.gz: 9dfc6210d919e6e8441c24e822e696be4c62ee801175e4659c57f0eae95c44e9782c9f10af1385328c3871aa55edf3bbf9a43a02d10a635888445ad2f4204924
7
+ data.tar.gz: 8d00201721f50dabed2215da1b12747a8fb0852b40576c639ef9e262c70cce86e56dc04efeffbdd4ffa4376151069975388f464f2af25dd6119c2a068d2f0e12
@@ -0,0 +1,59 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.3
3
+
4
+ Rails:
5
+ Enabled: false
6
+
7
+ Layout/AlignParameters:
8
+ Enabled: false
9
+
10
+ Layout/IndentHash:
11
+ Enabled: false
12
+
13
+ Layout/DotPosition:
14
+ Enabled: false
15
+
16
+ Layout/EmptyLineAfterGuardClause:
17
+ Enabled: false
18
+
19
+ Layout/CaseIndentation:
20
+ Enabled: false
21
+
22
+ Layout/MultilineMethodCallBraceLayout:
23
+ Enabled: false
24
+
25
+ Layout/MultilineMethodCallIndentation:
26
+ Enabled: false
27
+
28
+ Layout/MultilineOperationIndentation:
29
+ EnforcedStyle: indented
30
+
31
+ Style/Encoding:
32
+ Enabled: true
33
+
34
+ Style/PercentLiteralDelimiters:
35
+ Enabled: false
36
+
37
+ Style/RegexpLiteral:
38
+ Enabled: false
39
+
40
+ Style/RescueModifier:
41
+ Enabled: false
42
+
43
+ Style/Documentation:
44
+ Enabled: false
45
+
46
+ Style/ParallelAssignment:
47
+ Enabled: false
48
+
49
+ Style/RescueStandardError:
50
+ Enabled: false
51
+
52
+ Naming/UncommunicativeMethodParamName:
53
+ Enabled: false
54
+
55
+ Naming/AccessorMethodName:
56
+ Enabled: false
57
+
58
+ Metrics:
59
+ Enabled: false
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-liblynx (1.0.7)
4
+ omniauth-liblynx (1.0.8)
5
5
  omniauth (~> 1.5)
6
6
  omniauth-oauth2 (>= 1.4.0, < 2.0)
7
7
 
@@ -30,20 +30,20 @@ GEM
30
30
  oauth2 (~> 1.1)
31
31
  omniauth (~> 1.2)
32
32
  parallel (1.12.1)
33
- parser (2.5.1.2)
33
+ parser (2.5.3.0)
34
34
  ast (~> 2.4.0)
35
35
  powerpack (0.1.2)
36
36
  rack (2.0.6)
37
37
  rainbow (3.0.0)
38
38
  rake (10.5.0)
39
- rubocop (0.59.2)
39
+ rubocop (0.60.0)
40
40
  jaro_winkler (~> 1.5.1)
41
41
  parallel (~> 1.10)
42
42
  parser (>= 2.5, != 2.5.1.1)
43
43
  powerpack (~> 0.1)
44
44
  rainbow (>= 2.2.2, < 4.0)
45
45
  ruby-progressbar (~> 1.7)
46
- unicode-display_width (~> 1.0, >= 1.0.1)
46
+ unicode-display_width (~> 1.4.0)
47
47
  ruby-progressbar (1.10.0)
48
48
  unicode-display_width (1.4.0)
49
49
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module LibLynx
5
- VERSION = '1.0.7'
5
+ VERSION = '1.0.8'
6
6
  end
7
7
  end
@@ -42,7 +42,7 @@ module OmniAuth
42
42
  'surname' => i['surname'],
43
43
  'given_name' => i['given_name'],
44
44
  'raw' => raw_info['_response'],
45
- 'attributes' => raw_info.dig('_response', 'attributes')
45
+ 'attributes' => raw_info.dig('_response', 'raw_attr')
46
46
  }
47
47
  end
48
48
 
@@ -1,4 +1,4 @@
1
- require File.expand_path('../lib/omniauth-liblynx/version', __FILE__)
1
+ require File.expand_path('lib/omniauth-liblynx/version', __dir__)
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.authors = ['Denis Sablic']
@@ -6,6 +6,7 @@ Gem::Specification.new do |gem|
6
6
  gem.homepage = 'https://github.com/dsablic/omniauth-liblynx'
7
7
  gem.summary = 'OmniAuth strategy for LibLynx'
8
8
  gem.license = 'MIT'
9
+ gem.required_ruby_version = '>= 2.3.0'
9
10
 
10
11
  gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
11
12
  gem.files = `git ls-files`.split("\n")
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.7
4
+ version: 1.0.8
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-16 00:00:00.000000000 Z
11
+ date: 2018-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -93,6 +93,7 @@ executables: []
93
93
  extensions: []
94
94
  extra_rdoc_files: []
95
95
  files:
96
+ - ".rubocop.yml"
96
97
  - ".travis.yml"
97
98
  - Gemfile
98
99
  - Gemfile.lock
@@ -115,7 +116,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
115
116
  requirements:
116
117
  - - ">="
117
118
  - !ruby/object:Gem::Version
118
- version: '0'
119
+ version: 2.3.0
119
120
  required_rubygems_version: !ruby/object:Gem::Requirement
120
121
  requirements:
121
122
  - - ">="