omniauth-stripe 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.codeclimate.yml +16 -0
- data/.gitignore +22 -0
- data/.rubocop.yml +63 -0
- data/.travis.yml +16 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +49 -0
- data/Rakefile +10 -0
- data/lib/omniauth-stripe.rb +2 -0
- data/lib/omniauth-stripe/version.rb +5 -0
- data/lib/omniauth/strategies/stripe.rb +40 -0
- data/omniauth-stripe.gemspec +26 -0
- data/test/omniauth/strategies/client_options_test.rb +30 -0
- data/test/omniauth/strategies/data_test.rb +55 -0
- data/test/test_helper.rb +8 -0
- metadata +174 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8307cda6fe4e02d572ddd307908e84d32eae9406
|
4
|
+
data.tar.gz: e682f7c199966d77c5923285fa999527689b7e15
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3ef14cf3df283587246a54f5b1153881cf9379ca352c3e9180e21194caeea33885c431ff42ad7ae78493fc11fadd537253b433f92342d432e95ceb8006540b9e
|
7
|
+
data.tar.gz: e07eff547a03d5c22c028735a055bd5c9cf6fba8c061393489b2ce482e287bb88b92d1a409df7cf5b0d98c836d2fe1390af51df8392bb15fe97e5c35b8fe4978
|
data/.codeclimate.yml
ADDED
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
*.bundle
|
19
|
+
*.so
|
20
|
+
*.o
|
21
|
+
*.a
|
22
|
+
mkmf.log
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
AllCops:
|
2
|
+
Include:
|
3
|
+
- '**/*.gemspec'
|
4
|
+
- '**/*.podspec'
|
5
|
+
- '**/*.jbuilder'
|
6
|
+
- '**/*.rake'
|
7
|
+
- '**/*.opal'
|
8
|
+
- '**/config.ru'
|
9
|
+
- '**/Gemfile'
|
10
|
+
- '**/Rakefile'
|
11
|
+
- '**/Capfile'
|
12
|
+
- '**/Guardfile'
|
13
|
+
- '**/Podfile'
|
14
|
+
- '**/Thorfile'
|
15
|
+
- '**/Vagrantfile'
|
16
|
+
- '**/Berksfile'
|
17
|
+
- '**/Cheffile'
|
18
|
+
- '**/Vagabondfile'
|
19
|
+
|
20
|
+
Style/Documentation:
|
21
|
+
Enabled: false
|
22
|
+
|
23
|
+
Style/StringLiterals:
|
24
|
+
EnforcedStyle: double_quotes
|
25
|
+
|
26
|
+
Layout/SpaceInsideBlockBraces:
|
27
|
+
EnforcedStyle: space
|
28
|
+
EnforcedStyleForEmptyBraces: space
|
29
|
+
SpaceBeforeBlockParameters: false
|
30
|
+
|
31
|
+
Layout/SpaceInsideHashLiteralBraces:
|
32
|
+
EnforcedStyle: no_space
|
33
|
+
EnforcedStyleForEmptyBraces: no_space
|
34
|
+
|
35
|
+
Layout/FirstArrayElementLineBreak:
|
36
|
+
Enabled: true
|
37
|
+
|
38
|
+
Layout/FirstHashElementLineBreak:
|
39
|
+
Enabled: true
|
40
|
+
|
41
|
+
Style/SymbolArray:
|
42
|
+
Enabled: true
|
43
|
+
|
44
|
+
Style/PercentLiteralDelimiters:
|
45
|
+
PreferredDelimiters:
|
46
|
+
'%': '[]'
|
47
|
+
'%i': '[]'
|
48
|
+
'%q': '[]'
|
49
|
+
'%Q': '[]'
|
50
|
+
'%r': '{}'
|
51
|
+
'%s': '[]'
|
52
|
+
'%w': '[]'
|
53
|
+
'%W': '[]'
|
54
|
+
'%x': '[]'
|
55
|
+
|
56
|
+
Metrics/LineLength:
|
57
|
+
Enabled: false
|
58
|
+
|
59
|
+
Style/EmptyMethod:
|
60
|
+
EnforcedStyle: expanded
|
61
|
+
|
62
|
+
Naming/FileName:
|
63
|
+
Enabled: false
|
data/.travis.yml
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
language: ruby
|
2
|
+
cache: bundler
|
3
|
+
sudo: false
|
4
|
+
notifications:
|
5
|
+
email: false
|
6
|
+
rvm:
|
7
|
+
- 2.4.2
|
8
|
+
before_script:
|
9
|
+
- 'curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter'
|
10
|
+
- chmod +x ./cc-test-reporter
|
11
|
+
- "./cc-test-reporter before-build"
|
12
|
+
after_script:
|
13
|
+
- "./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
|
14
|
+
env:
|
15
|
+
global:
|
16
|
+
secure: UCFW/ekVocgsdgIHiPW1o8OqRX2eA8qz80BKmQWGk9DrQ0AtEhHQDM5e9Gpei04zD+XYGEokopkPy5oqhV31Jn3M5j/NI/gYzgwrEHD0dDsvYSssep8IDv80ZCS0/w0p8yTqJG3nmK2pvjIk+6X/dgqtzDFO7fKJ0h4huxdk9dRJIKWZjTPlHjjnfZ2b7DdLDZDfuZBU1u1wCRoxaN+qVHZJhSBtuc7Wqsd2vTJdcRTe05LjehC0SWJLO8KWv3J2++QV+7ur4lvhMm4gxPLXmeO3TevkmJDv19OxmUas5A2/ynjWlkCHSUrVKoiBMMKuZzOhco59Q2teosqLZgvYQPphkjWwV7QO3+zBkm4A2hSmfe7EWj4Mp6HN5SrzJa5U+FN+zJZJabtngikHBSciE+Q/dcUfMm9ijp4M5rzg8vuolnTOgAdRaCiUsUrRpCUZplH4YgNZb3ylperinw/ILAq9LVmGQDQ+TF4Hh2XtIAtymTckE0/pWbnlF1ePd8L1W8vAUp9rlwLLfPmSEqfwBMleBqT9usz459RvLQ5DGm+s0TFt5IGFW/fPGZ6rLVCy2tzR0jkklQUXl35g+EZK+JQjh8KFexrKMb/ycbLbVR5vo+Way7Rj+fTl1FduRJmUSLKSAPey6ey3ZQcETViPXAxZ1wsbIMfqbVYex6WN6Uw=
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2017 Nando Vieira
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Omniauth::Stripe
|
2
|
+
|
3
|
+
[![Travis-CI](https://travis-ci.org/fnando/omniauth-stripe.svg)](https://travis-ci.org/fnando/omniauth-stripe)
|
4
|
+
[![CodeClimate](https://codeclimate.com/github/fnando/omniauth-stripe.svg)](https://codeclimate.com/github/fnando/omniauth-stripe)
|
5
|
+
[![Test Coverage](https://codeclimate.com/github/fnando/omniauth-stripe/badges/coverage.svg)](https://codeclimate.com/github/fnando/omniauth-stripe/coverage)
|
6
|
+
[![Gem](https://img.shields.io/gem/v/omniauth-stripe.svg)](https://rubygems.org/gems/omniauth-stripe)
|
7
|
+
[![Gem](https://img.shields.io/gem/dt/omniauth-stripe.svg)](https://rubygems.org/gems/omniauth-stripe)
|
8
|
+
|
9
|
+
[Stripe](http://stripe.com)'s OAuth Strategy for OmniAuth.
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
|
13
|
+
Add this line to your application's Gemfile:
|
14
|
+
|
15
|
+
gem 'omniauth-stripe'
|
16
|
+
|
17
|
+
And then execute:
|
18
|
+
|
19
|
+
$ bundle
|
20
|
+
|
21
|
+
Or install it yourself as:
|
22
|
+
|
23
|
+
$ gem install omniauth-stripe
|
24
|
+
|
25
|
+
## Usage
|
26
|
+
|
27
|
+
`OmniAuth::Strategies::Stripe` is simply a Rack middleware. Read the OmniAuth docs for detailed instructions: <https://github.com/intridea/omniauth>.
|
28
|
+
|
29
|
+
First, configure your Connect account at >https://dashboard.stripe.com/account/applications/settings>. Your callback URL must be something like `https://example.com/auth/stripe/callback`. For development you can use `http://127.0.0.1:3000/auth/stripe/callback`.
|
30
|
+
|
31
|
+
Here's a quick example, adding the middleware to a Rails app in `config/initializers/omniauth.rb`. This example assumes you're exporting your credentials as environment variables.
|
32
|
+
|
33
|
+
```ruby
|
34
|
+
Rails.application.config.middleware.use OmniAuth::Builder do
|
35
|
+
provider :stripe,
|
36
|
+
ENV['STRIPE_CLIENT_ID'],
|
37
|
+
ENV['STRIPE_CLIENT_SECRET']
|
38
|
+
end
|
39
|
+
```
|
40
|
+
|
41
|
+
Now visit `/auth/stripe` to start authentication against Stripe.
|
42
|
+
|
43
|
+
## Contributing
|
44
|
+
|
45
|
+
1. Fork [omniauth-stripe](https://github.com/fnando/omniauth-stripe/fork)
|
46
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
47
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
48
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
49
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
require "omniauth"
|
2
|
+
require "omniauth-oauth2"
|
3
|
+
|
4
|
+
module OmniAuth
|
5
|
+
module Strategies
|
6
|
+
class Stripe < OmniAuth::Strategies::OAuth2
|
7
|
+
EXTRA_KEYS_EXCEPTION = %i[id email display_name].freeze
|
8
|
+
|
9
|
+
option :client_options,
|
10
|
+
site: "https://api.stripe.com",
|
11
|
+
authorize_url: "https://connect.stripe.com/oauth/authorize",
|
12
|
+
token_url: "https://connect.stripe.com/oauth/token"
|
13
|
+
|
14
|
+
option :scope, "read_only"
|
15
|
+
|
16
|
+
uid do
|
17
|
+
access_token["stripe_user_id"]
|
18
|
+
end
|
19
|
+
|
20
|
+
info do
|
21
|
+
{
|
22
|
+
email: raw_info[:email],
|
23
|
+
name: raw_info[:display_name]
|
24
|
+
}
|
25
|
+
end
|
26
|
+
|
27
|
+
extra do
|
28
|
+
raw_info.dup.delete_if {|key, _| EXTRA_KEYS_EXCEPTION.include?(key) }
|
29
|
+
end
|
30
|
+
|
31
|
+
def raw_info
|
32
|
+
@raw_info ||= deep_symbolize(access_token.get("/v1/account").parsed)
|
33
|
+
end
|
34
|
+
|
35
|
+
def callback_url
|
36
|
+
full_host + script_name + callback_path
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require "./lib/omniauth-stripe/version"
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "omniauth-stripe"
|
5
|
+
spec.version = Omniauth::Stripe::VERSION
|
6
|
+
spec.authors = ["Nando Vieira"]
|
7
|
+
spec.email = ["fnando.vieira@gmail.com"]
|
8
|
+
spec.summary = "OmniAuth strategy for Stripe (https://stripe.com)."
|
9
|
+
spec.description = spec.summary
|
10
|
+
spec.homepage = "https://github.com/fnando/omniauth-stripe"
|
11
|
+
spec.license = "MIT"
|
12
|
+
|
13
|
+
spec.files = `git ls-files -z`.split("\x0")
|
14
|
+
spec.executables = spec.files.grep(%r{^bin/}) {|f| File.basename(f) }
|
15
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
16
|
+
spec.require_paths = ["lib"]
|
17
|
+
|
18
|
+
spec.add_runtime_dependency "omniauth-oauth2"
|
19
|
+
spec.add_development_dependency "bundler"
|
20
|
+
spec.add_development_dependency "rake"
|
21
|
+
spec.add_development_dependency "minitest-utils"
|
22
|
+
spec.add_development_dependency "pry-meta"
|
23
|
+
spec.add_development_dependency "mocha"
|
24
|
+
spec.add_development_dependency "simplecov"
|
25
|
+
spec.add_development_dependency "webmock"
|
26
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require "test_helper"
|
2
|
+
|
3
|
+
class ClientOptionsTest < Minitest::Test
|
4
|
+
let(:app) { ->(env) { } }
|
5
|
+
|
6
|
+
let(:strategy) do
|
7
|
+
OmniAuth::Strategies::Stripe.new(app, "client_id", "client_secret")
|
8
|
+
end
|
9
|
+
|
10
|
+
test "sets name" do
|
11
|
+
assert_equal "stripe", strategy.options.name
|
12
|
+
end
|
13
|
+
|
14
|
+
test "sets site" do
|
15
|
+
assert_equal "https://api.stripe.com", strategy.options.client_options.site
|
16
|
+
end
|
17
|
+
|
18
|
+
test "sets authorize url" do
|
19
|
+
assert_equal "https://connect.stripe.com/oauth/authorize", strategy.options.client_options.authorize_url
|
20
|
+
end
|
21
|
+
|
22
|
+
test "sets token url" do
|
23
|
+
assert_equal "https://connect.stripe.com/oauth/token", strategy.options.client_options.token_url
|
24
|
+
end
|
25
|
+
|
26
|
+
test "sets default scope" do
|
27
|
+
strategy.stubs(:session).returns({})
|
28
|
+
assert_equal "read_only", strategy.authorize_params.scope
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require "test_helper"
|
2
|
+
|
3
|
+
class DataTest < Minitest::Test
|
4
|
+
let(:app) { ->(env) { } }
|
5
|
+
|
6
|
+
let(:strategy) do
|
7
|
+
OmniAuth::Strategies::Stripe.new(app, "client_id", "client_secret")
|
8
|
+
end
|
9
|
+
|
10
|
+
test "returns callback url" do
|
11
|
+
strategy.stubs(:full_host).returns("https://example.com")
|
12
|
+
strategy.stubs(:script_name).returns("/script_name")
|
13
|
+
strategy.stubs(:callback_path).returns("/callback_path")
|
14
|
+
|
15
|
+
assert_equal "https://example.com/script_name/callback_path", strategy.callback_url
|
16
|
+
end
|
17
|
+
|
18
|
+
test "returns raw info" do
|
19
|
+
payload = {"id" => "ID"}
|
20
|
+
access_token = mock("access_token")
|
21
|
+
response = mock("response", parsed: payload)
|
22
|
+
access_token.expects(:get).with("/v1/account").returns(response)
|
23
|
+
strategy.stubs(:access_token).returns(access_token)
|
24
|
+
|
25
|
+
assert_equal Hash[:id, "ID"], strategy.raw_info
|
26
|
+
end
|
27
|
+
|
28
|
+
test "returns info" do
|
29
|
+
strategy.stubs(:raw_info).returns(object: "OBJECT", display_name: "NAME", email: "EMAIL")
|
30
|
+
|
31
|
+
info = strategy.info
|
32
|
+
|
33
|
+
assert_equal "EMAIL", info[:email]
|
34
|
+
assert_equal "NAME", info[:name]
|
35
|
+
end
|
36
|
+
|
37
|
+
test "returns uid" do
|
38
|
+
strategy.stubs(:access_token).returns("stripe_user_id" => "ID")
|
39
|
+
assert_equal "ID", strategy.uid
|
40
|
+
end
|
41
|
+
|
42
|
+
test "returns extra info" do
|
43
|
+
extra_info = {extra_info: "EXTRA_INFO"}
|
44
|
+
raw_info = {
|
45
|
+
extra_info: "EXTRA_INFO",
|
46
|
+
email: "EMAIL",
|
47
|
+
display_name: "DISPLAY_NAME",
|
48
|
+
id: "ID"
|
49
|
+
}
|
50
|
+
|
51
|
+
strategy.stubs(:raw_info).returns(raw_info)
|
52
|
+
|
53
|
+
assert_equal extra_info, strategy.extra
|
54
|
+
end
|
55
|
+
end
|
data/test/test_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,174 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: omniauth-stripe
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nando Vieira
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-09-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: omniauth-oauth2
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: minitest-utils
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry-meta
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: mocha
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: simplecov
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: webmock
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
description: OmniAuth strategy for Stripe (https://stripe.com).
|
126
|
+
email:
|
127
|
+
- fnando.vieira@gmail.com
|
128
|
+
executables: []
|
129
|
+
extensions: []
|
130
|
+
extra_rdoc_files: []
|
131
|
+
files:
|
132
|
+
- ".codeclimate.yml"
|
133
|
+
- ".gitignore"
|
134
|
+
- ".rubocop.yml"
|
135
|
+
- ".travis.yml"
|
136
|
+
- Gemfile
|
137
|
+
- LICENSE.txt
|
138
|
+
- README.md
|
139
|
+
- Rakefile
|
140
|
+
- lib/omniauth-stripe.rb
|
141
|
+
- lib/omniauth-stripe/version.rb
|
142
|
+
- lib/omniauth/strategies/stripe.rb
|
143
|
+
- omniauth-stripe.gemspec
|
144
|
+
- test/omniauth/strategies/client_options_test.rb
|
145
|
+
- test/omniauth/strategies/data_test.rb
|
146
|
+
- test/test_helper.rb
|
147
|
+
homepage: https://github.com/fnando/omniauth-stripe
|
148
|
+
licenses:
|
149
|
+
- MIT
|
150
|
+
metadata: {}
|
151
|
+
post_install_message:
|
152
|
+
rdoc_options: []
|
153
|
+
require_paths:
|
154
|
+
- lib
|
155
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
161
|
+
requirements:
|
162
|
+
- - ">="
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '0'
|
165
|
+
requirements: []
|
166
|
+
rubyforge_project:
|
167
|
+
rubygems_version: 2.6.13
|
168
|
+
signing_key:
|
169
|
+
specification_version: 4
|
170
|
+
summary: OmniAuth strategy for Stripe (https://stripe.com).
|
171
|
+
test_files:
|
172
|
+
- test/omniauth/strategies/client_options_test.rb
|
173
|
+
- test/omniauth/strategies/data_test.rb
|
174
|
+
- test/test_helper.rb
|