stbaldricks 12.8.1.alpha.1 → 12.8.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a2cf14c0abde1d44e37c186e52d28e2bcbcf3e4836589f121a050ec986fb796
|
|
4
|
+
data.tar.gz: cae1276dadd7af98847346cdfc711be61484038b68b09078b514902a2eb56187
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d918e601bafa01566ec4f6af15d282bc385b26f560c0c287c68134f892c3c1036600ab4e6e2f09de4aa9227e2d108fa37d31dd9674bd10b4019c76406cfcdaf3
|
|
7
|
+
data.tar.gz: acf788c0c4e8cbf2abf4fd10f53abaf8184390cbbca4e3e11610420d837da39169bbc61c3622c9a8e351efd48284d314a03c17b6f5e56f8831d6d7bbb09ca98a
|
|
@@ -412,6 +412,7 @@ module SBF
|
|
|
412
412
|
[->(v) { v[:type] == SBF::Client::Payment::Type::NONCE }, 'SBF::Client::Payment::NonceDetails'],
|
|
413
413
|
[->(v) { v[:type] == SBF::Client::Payment::Type::PAYPAL }, 'SBF::Client::Payment::PaypalDetails'],
|
|
414
414
|
[->(v) { v[:type] == SBF::Client::Payment::Type::STRIPE }, 'SBF::Client::Payment::StripeDetails'],
|
|
415
|
+
[->(v) { v[:type] == SBF::Client::Payment::Type::VENMO }, 'SBF::Client::Payment::VenmoDetails'],
|
|
415
416
|
[->(v) { v[:type] == SBF::Client::Payment::Type::UNKNOWN }, 'SBF::Client::Payment::UnknownDetails'],
|
|
416
417
|
[->(v) { v[:type] == SBF::Client::Payment::Type::WIRE_TRANSFER }, 'SBF::Client::Payment::WireTransferDetails']
|
|
417
418
|
]
|
|
@@ -15,6 +15,7 @@ module SBF
|
|
|
15
15
|
NONCE = 'nonce'.freeze
|
|
16
16
|
PAYPAL = 'paypal'.freeze
|
|
17
17
|
STRIPE = 'stripe'.freeze
|
|
18
|
+
VENMO = 'venmo'.freeze
|
|
18
19
|
UNKNOWN = 'unknown'.freeze
|
|
19
20
|
WIRE_TRANSFER = 'wire_transfer'.freeze
|
|
20
21
|
end
|
|
@@ -125,6 +126,14 @@ module SBF
|
|
|
125
126
|
end
|
|
126
127
|
end
|
|
127
128
|
|
|
129
|
+
class VenmoDetails < SBF::Client::Payment::Details
|
|
130
|
+
attr_accessor :gateway
|
|
131
|
+
|
|
132
|
+
def type
|
|
133
|
+
SBF::Client::Payment::Type::VENMO
|
|
134
|
+
end
|
|
135
|
+
end
|
|
136
|
+
|
|
128
137
|
class GooglePayDetails < SBF::Client::Payment::Details
|
|
129
138
|
attr_accessor :gateway
|
|
130
139
|
|
data/lib/stbaldricks/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stbaldricks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 12.8.1
|
|
4
|
+
version: 12.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Firespring
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-09-
|
|
11
|
+
date: 2022-09-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|
|
@@ -563,9 +563,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
563
563
|
version: '0'
|
|
564
564
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
565
565
|
requirements:
|
|
566
|
-
- - "
|
|
566
|
+
- - ">="
|
|
567
567
|
- !ruby/object:Gem::Version
|
|
568
|
-
version:
|
|
568
|
+
version: '0'
|
|
569
569
|
requirements: []
|
|
570
570
|
rubygems_version: 3.0.3.1
|
|
571
571
|
signing_key:
|