omniauth-stripe-connect-v2 1.0.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0404eaadd2d3630ed7f7329e852f617406e36b463d5099f3b9b211d37e081742
4
- data.tar.gz: 53e9c5c83312fbaf2c3a08b5c2c7dc43ad14b6219696e95235ad7f27740bcb43
3
+ metadata.gz: '08c43f03072fac4bfe96f0c572413eec056c2d406e46b44d8a5a50e781a186f5'
4
+ data.tar.gz: a464093d810328ec2a17a21fff40e0422651146ce41477989ab9cb4c378b1f3a
5
5
  SHA512:
6
- metadata.gz: 181fbf9d2ba6e12fec3a008a606f58707c87f103c5b84c0667b7e123ad1c2ffb06804c024732ddb7ee1a9eb5a9e469e4785d97ab0a9e906ccc75ec9b22e82982
7
- data.tar.gz: 7466db95ff2a1b9edf395f8155137a26be0827f1723de33403ff65cd3b504e31046215ec03c83fb8028e6a41287f2a8f21bbdde4704505def8afc24e2a822aab
6
+ metadata.gz: b59b29ed8ae6689f832223d2d9dca22f73b00d6418b179e1c001dfc8dda6abb41e880f13b46c7e09e4937296570700ee95807a6f983f3c7a252bbe5ae85086c5
7
+ data.tar.gz: d4afc8ec91803c43622ade6024d9f138ba513846c915ab1e190688c46feac5f8e35a6bcf12b2e34827d44d7a7b2984abcd46d64e19af7dc15ebab19120a3a6a8
data/README.md CHANGED
@@ -21,7 +21,7 @@ Or install it yourself as:
21
21
 
22
22
  ## Usage
23
23
 
24
- OmniAuth::Strategies::StripeConnectV2 is simply a Rack middleware. Read the OmniAuth
24
+ OmniAuth::Strategies::StripeConnect is simply a Rack middleware. Read the OmniAuth
25
25
  1.0 docs for detailed instructions: https://github.com/intridea/omniauth.
26
26
 
27
27
  ### Non-Devise
@@ -2,8 +2,8 @@ require 'omniauth/strategies/oauth2'
2
2
 
3
3
  module OmniAuth
4
4
  module Strategies
5
- class StripeConnectV2 < OmniAuth::Strategies::OAuth2
6
- option :name, :stripe_connect_v2
5
+ class StripeConnect < OmniAuth::Strategies::OAuth2
6
+ option :name, :stripe_connect
7
7
 
8
8
  option :client_options, {
9
9
  :site => 'https://connect.stripe.com'
@@ -0,0 +1 @@
1
+ require 'omniauth/strategies/stripe_connect'
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
2
  module StripeConnectV2
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.3"
4
4
  end
5
5
  end
@@ -1,2 +1,2 @@
1
1
  require "omniauth-stripe-connect-v2/version"
2
- require 'omniauth/stripe_connect_v2'
2
+ require 'omniauth/stripe_connect'
@@ -1,7 +1,7 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe OmniAuth::Strategies::StripeConnectV2 do
4
- let(:fresh_strategy) { Class.new(OmniAuth::Strategies::StripeConnectV2) }
3
+ describe OmniAuth::Strategies::StripeConnect do
4
+ let(:fresh_strategy) { Class.new(OmniAuth::Strategies::StripeConnect) }
5
5
 
6
6
 
7
7
  before(:each) do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-stripe-connect-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hide Shidara
@@ -53,7 +53,7 @@ files:
53
53
  - lib/omniauth-stripe-connect-v2.rb
54
54
  - lib/omniauth-stripe-connect-v2/version.rb
55
55
  - lib/omniauth/strategies/stripe_connect_v2.rb
56
- - lib/omniauth/stripe_connect_v2.rb
56
+ - lib/omniauth/stripe_connect.rb
57
57
  - omniauth-stripe-connect-v2.gemspec
58
58
  - spec_v2/omniauth/strategies/stripe_connect_v2_spec.rb
59
59
  - spec_v2/spec_helper.rb
@@ -1 +0,0 @@
1
- require 'omniauth/strategies/stripe_connect_v2'