omniauth-stripe-connect-v2 1.0.1 → 1.0.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
  SHA256:
3
- metadata.gz: 0404eaadd2d3630ed7f7329e852f617406e36b463d5099f3b9b211d37e081742
4
- data.tar.gz: 53e9c5c83312fbaf2c3a08b5c2c7dc43ad14b6219696e95235ad7f27740bcb43
3
+ metadata.gz: 296dda4d069da35f66dfdd6e85c1c7b72e1f7bafdb274e1753cbd8074f82f72e
4
+ data.tar.gz: 1070df95b8832c18a93aa639d13194faba176f9c70d3d2a845cbf11e84b04efe
5
5
  SHA512:
6
- metadata.gz: 181fbf9d2ba6e12fec3a008a606f58707c87f103c5b84c0667b7e123ad1c2ffb06804c024732ddb7ee1a9eb5a9e469e4785d97ab0a9e906ccc75ec9b22e82982
7
- data.tar.gz: 7466db95ff2a1b9edf395f8155137a26be0827f1723de33403ff65cd3b504e31046215ec03c83fb8028e6a41287f2a8f21bbdde4704505def8afc24e2a822aab
6
+ metadata.gz: d476fddeb1b033869b7234885d2e05d948840633a5f7aebd429e9e533489780b9a795afe09c0b3df440e50544e22052a4b39c819e495cc764377e64f04292524
7
+ data.tar.gz: 6f0b140deafcd7a8d48b81b8fac947e14685778add36e3730dbe6ab1a18466d54153645ea852b1b07db65769cca0884c80aa3dcaf13f2c7aa78ed481387c8f6a
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'
@@ -1 +1 @@
1
- require 'omniauth/strategies/stripe_connect_v2'
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.2"
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.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hide Shidara