omniauth-orcid 1.0.13 → 1.0.14

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
  SHA1:
3
- metadata.gz: e6f69d6f049b73e1dc1eee59c4919d00700c14d5
4
- data.tar.gz: acc281c20bcce6b9d1d702def2e4ebfa6c0c1a9e
3
+ metadata.gz: d595a7dc573239619f732c49f1fc5a2598810340
4
+ data.tar.gz: 285b0f1eb4cd046f50fcd45fb9058142b422be7d
5
5
  SHA512:
6
- metadata.gz: 681950433ba79c8a7cddfe12319be39cb703ad033c529f701728e905738dedbcd9c9773fa2d31ffcf0d09bce961e8234d227850d9a63179a27ea03074190b110
7
- data.tar.gz: a87cb677d9bd17ab7a70bff30a219ae2eb04987122c38b0f5747aa8fd7b90e7f2cf9a40aa4e224c944205a2a3cc26a66e27b6d70eea8982d94db862fab3d92b1
6
+ metadata.gz: b9dd5be43d0c1d3d349c68bea6a87bc3a2670ffb5b01090900125f47ee21740e39d62c1a66c18a76d2fb4945eabbde8891272c56bb1e4b94636d0de53111f60a
7
+ data.tar.gz: 48c029f1c862f7b3bae41a732d5f1dd6c5f1add06414d0a288f24a7ef83f26d3fe1bae71c02d0916ab8dfb2074b3bb9f5c83af4ebfcec785f22d590030b9307b
data/README.md CHANGED
@@ -153,8 +153,7 @@ class AuthenticationsController < ApplicationController
153
153
 
154
154
  ## Configuration
155
155
 
156
- You can also grab parameters from a environment variables (e.g. using the [dotenv](https://github.com/bkeepers/dotenv) gem) and pass to the strategy, along with other options specific to your app. The OAuth scope or
157
- scopes in particular frequently need to be customized. Here's an example from the bundled Sinatra app in `demo.rb`:
156
+ You can also grab parameters from a environment variables (e.g. using the [dotenv](https://github.com/bkeepers/dotenv) gem) and pass to the strategy, along with other options specific to your app. Here's an example from the bundled Sinatra app in `demo.rb`:
158
157
 
159
158
  ```ruby
160
159
  use OmniAuth::Builder do
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
2
  module Orcid
3
- VERSION = "1.0.13"
3
+ VERSION = "1.0.14"
4
4
  end
5
5
  end
@@ -58,7 +58,7 @@ module OmniAuth
58
58
  case namespace
59
59
  when 'sandbox' then 'http://api.sandbox.orcid.org'
60
60
  when 'production' then 'http://api.orcid.org'
61
- when 'public_sandbox' then 'http://pub.sandbox.orcid.org/'
61
+ when 'public_sandbox' then 'http://pub.sandbox.orcid.org'
62
62
  when 'public' then 'http://pub.orcid.org'
63
63
  end
64
64
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-orcid
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.13
4
+ version: 1.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gudmundur A. Thorisson