moneytree-rails 0.1.5 → 0.1.6
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 +5 -0
- data/app/models/moneytree/payment_gateway.rb +1 -0
- data/lib/moneytree/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e93dc9ca7a7f7c33bb6866abec9c4ef68038d5c9c542a92ea20d890086ab4369
|
4
|
+
data.tar.gz: ab099aef15f26a36c21934d1a70d39e8641db9fee2feb88107681b3f72b5f890
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c76a4655eb8f63a3c7643b95b595e8cbe7484ff5a92642ca28e1947225ed6ebce4be3bf80cb620bc1ace05450b308a976901f4f3415fcfce2083dd4f475453fd
|
7
|
+
data.tar.gz: ddb835e4f3a5113752ca9929a4fd0788565729a8881a7c917bbb13548bdc856e025e0b7def3c0647d6e5314bf4e0670ce70036355be1a21a77439002cb786699
|
data/README.md
CHANGED
@@ -95,6 +95,11 @@ class Merchant < ApplicationRecord
|
|
95
95
|
def website
|
96
96
|
'https://www.boomtown.com'
|
97
97
|
end
|
98
|
+
|
99
|
+
# Optional, will be called by Moneytree after authenticating with the PSP
|
100
|
+
def moneytree_oauth_callback
|
101
|
+
puts "Hurray, I just got associated with a Moneytree gateway!"
|
102
|
+
end
|
98
103
|
end
|
99
104
|
```
|
100
105
|
|
data/lib/moneytree/version.rb
CHANGED