omniauth-oauth2-generic 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15aee5306061423e3962da4e902ce8af441cbf7805c0811a1cd3e71a7a2a04fe
4
- data.tar.gz: df98466984c59d9b070125e712025e927b739cf47a2e07a129f8895c86fcc263
3
+ metadata.gz: 0efe33dc7457a9d0e6b34debc3c1870f2c37d2a8d07567cac1cbb752176bfa38
4
+ data.tar.gz: 9300826d8c5252d814c1fef2674ed3a6e31d096bb1f0518d4fd0a70b0bf70209
5
5
  SHA512:
6
- metadata.gz: abed1e71df9fa8bdeb799162f094fbec8181d758e3407b072fd6f2210fb26b09a8404234106deab44f37580e7ca6db736c7fc9d85f5cda65bb2254dfe0c7a22a
7
- data.tar.gz: fb5ef78a57a5f2896009ba83c33cf8b6949753ef51da1eccef6856291b3b04ab2d1261bc3e44e628f5e3560bade37dbbcd9fcc3aaef7f0e6b013a0d9c56c6bff
6
+ metadata.gz: 1104761bcc9f0e95e71ef281f1aa66f2e1b708b4e5875af112cd8bebc2483857173b4d69b9982b90e86bcbaf46a0bbb111cb4d4b98311dcc6ec7d36b90e06a2f
7
+ data.tar.gz: 2e61fdff85258367f9d0cdf598c7af13bcb04ae11bd9b6cfef29f99ea99b4306e886fa4fd2a91c0426a1cec36a85bd6b605db1245b91f0c5b5f7f87040077717
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-oauth2-generic (0.2.7)
4
+ omniauth-oauth2-generic (0.2.8)
5
5
  omniauth-oauth2 (~> 1.0)
6
6
  rake
7
7
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Omniauth
4
4
  module OAuth2Generic
5
- VERSION = '0.2.7'
5
+ VERSION = '0.2.8'
6
6
  end
7
7
  end
@@ -103,9 +103,11 @@ module OmniAuth
103
103
 
104
104
  full_path = path.is_a?(Array) ? path : Array(user_paths[:root_path]) + [path]
105
105
  full_path.inject(raw_info) do |info, key|
106
- info[key]
107
- rescue StandardError
108
- nil
106
+ begin # rubocop:disable Style/RedundantBegin
107
+ info[key]
108
+ rescue StandardError
109
+ nil
110
+ end
109
111
  end
110
112
  end
111
113
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-oauth2-generic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Satorix
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-11 00:00:00.000000000 Z
11
+ date: 2020-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth-oauth2