omniauth-paypal-oauth2 1.4.1 → 1.4.2

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: cee9ae6451c3c9bc2808f6b14881192d2b12b613
4
- data.tar.gz: ddd06b039ce42e99e3036162f3aded736940fca5
3
+ metadata.gz: d33993fc27b37c6b3ab9edb748a4bfddb0a7b1c8
4
+ data.tar.gz: a687c3aef0412af7ac0afe10a992ed3c79f3bb01
5
5
  SHA512:
6
- metadata.gz: 35b0c2995073d0432d6f60e6d3fc0b8b6f7f90fc0c16b780ba8201bdd51ffc05212e52d654f7a3f2a958ed4bfd1396df695e47bd7f26bee22e8360ac2c7a955b
7
- data.tar.gz: 3ddfa227aba7746cee13752146ef8c20ad76eb239b5d2a46259c46c9a8f3b4765a8b3271869059448168abb3a19e0700131ecd6b3a867c65b25d2fcbf0ff03fd
6
+ metadata.gz: 35aa8ae72b8dfa0ea51049a2be778bec487a69cbc3f740cc5b3ea013f722de5f7d83c456e081b3d32037b439ff0a6b8d4c2404dfc39465181a3ed604e88dc383
7
+ data.tar.gz: 624b322749d6404fdb5af19037e305f25edf4b912703b95f18ccfe20788a947540a6a5e7f7836344ee4c99afe94d43c8b27b3f7799055164732c24ce4bca1158
@@ -1 +1 @@
1
- require 'omniauth/paypal'
1
+ require File.join('omniauth', 'paypal_oauth2')
@@ -0,0 +1 @@
1
+ require File.join('omniauth', 'strategies', 'paypal_oauth2')
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
- module PayPal
2
+ module PayPalOauth2
3
3
  VERSION = "1.3"
4
4
  end
5
5
  end
@@ -2,7 +2,7 @@ require 'omniauth-oauth2'
2
2
 
3
3
  module OmniAuth
4
4
  module Strategies
5
- class PayPal < OmniAuth::Strategies::OAuth2
5
+ class PayPalOauth2 < OmniAuth::Strategies::OAuth2
6
6
  DEFAULT_SCOPE = "openid profile"
7
7
  DEFAULT_RESPONSE_TYPE = "code"
8
8
  SANDBOX_SITE = "https://api.sandbox.paypal.com"
@@ -4,7 +4,7 @@ require 'omniauth/paypal/version'
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'omniauth-paypal-oauth2'
7
- s.version = '1.4.1'
7
+ s.version = '1.4.2'
8
8
  s.authors = ['Jonas Hübotter']
9
9
  s.email = ['jonas.huebotter@gmail.com']
10
10
  s.summary = 'PayPal Identity strategy for OmniAuth2'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-paypal-oauth2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Hübotter
@@ -65,9 +65,9 @@ files:
65
65
  - README.md
66
66
  - Rakefile
67
67
  - lib/omniauth-paypal-oauth2.rb
68
- - lib/omniauth/paypal.rb
69
- - lib/omniauth/paypal/version.rb
70
- - lib/omniauth/strategies/paypal.rb
68
+ - lib/omniauth/paypal_oauth2.rb
69
+ - lib/omniauth/paypal_oauth2/version.rb
70
+ - lib/omniauth/strategies/paypal_oauth2.rb
71
71
  - omniauth-paypal-oauth2.gemspec
72
72
  - spec/omniauth/strategies/paypal_spec.rb
73
73
  - spec/spec_helper.rb
@@ -1,2 +0,0 @@
1
- require 'omniauth/paypal/version'
2
- require 'omniauth/strategies/paypal'