moneytree-rails 0.1.4 β 0.1.5
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 +4 -4
- data/README.md +1 -1
- data/app/controllers/moneytree/oauth/stripe_controller.rb +2 -1
- data/lib/moneytree/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2006000e7eb666a0edd1d8e035330c00804f41460dcca1a7e73d75f855dcd254
|
4
|
+
data.tar.gz: 1a36220066504521f1d9d4b477d9eeca1fb5ddd7dce1abc37daefe0a4412001f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72fbbd0d1f6dd0e144e6d72a412aa7313487afa0d92c2bbb5213925a4d3e4eaebdcb1369a64060183d7b073de41823f97d1f978f8751151c82799a8565324530
|
7
|
+
data.tar.gz: 296df5c1b71b78acd51639d49caca1964bf8260c156ddc7ea68aa648dcf47a6fe8e1e0b9887e1cf20236365a8436dd9b76f45c7e1a5f18fdb74d537a3944d8bf
|
data/README.md
CHANGED
@@ -13,7 +13,7 @@ functionality with almost no work on your end:
|
|
13
13
|
- π΅πΆπ·π΄ Multi-currency
|
14
14
|
- π OAuth to link your PSP account
|
15
15
|
- π©βπ» PSP account creation, (with commission)
|
16
|
-
- βοΈ
|
16
|
+
- βοΈ Webhooks
|
17
17
|
- π³ ~~PCI compliance with Javascript libraries~~ comming soon
|
18
18
|
- π§² Platform fees a.k.a. Market Places
|
19
19
|
|
@@ -6,7 +6,8 @@ module Moneytree
|
|
6
6
|
end
|
7
7
|
|
8
8
|
def callback
|
9
|
-
|
9
|
+
# TODO: Remove this module prefix once we figure out how to properly autoload this.
|
10
|
+
payment_gateway = Moneytree::PaymentGateway.create!(psp: 'stripe', account: current_account)
|
10
11
|
payment_gateway.oauth_callback(payment_gateway_params)
|
11
12
|
redirect_to Moneytree.oauth_redirect, notice: 'Connected to Stripe'
|
12
13
|
end
|
data/lib/moneytree/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: moneytree-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kieran Klaassen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-11-
|
11
|
+
date: 2020-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
97
|
- !ruby/object:Gem::Version
|
98
98
|
version: '0'
|
99
99
|
requirements: []
|
100
|
-
rubygems_version: 3.1.
|
100
|
+
rubygems_version: 3.1.4
|
101
101
|
signing_key:
|
102
102
|
specification_version: 4
|
103
103
|
summary: A payments engine for rails centered aorund transactional payments and orders.
|