braintree 2.69.0 → 2.69.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.
- data/lib/braintree/payment_method_gateway.rb +2 -0
- data/lib/braintree/version.rb +1 -1
- data/spec/httpsd.pid +1 -1
- data/spec/integration/braintree/payment_method_spec.rb +2 -0
- metadata +177 -173
- checksums.yaml +0 -7
|
@@ -58,6 +58,8 @@ module Braintree
|
|
|
58
58
|
PayPalAccount._new(@gateway, response[:paypal_account])
|
|
59
59
|
elsif response[:coinbase_account]
|
|
60
60
|
SuccessfulResult.new(:payment_method => CoinbaseAccount._new(@gateway, response[:coinbase_account]))
|
|
61
|
+
elsif response.has_key?(:us_bank_account)
|
|
62
|
+
UsBankAccount._new(@gateway, response[:us_bank_account])
|
|
61
63
|
elsif response.has_key?(:europe_bank_account)
|
|
62
64
|
EuropeBankAccount._new(@gateway, response[:europe_bank_account])
|
|
63
65
|
elsif response.has_key?(:apple_pay_card)
|
data/lib/braintree/version.rb
CHANGED
data/spec/httpsd.pid
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
31391
|
|
@@ -501,6 +501,8 @@ describe Braintree::PaymentMethod do
|
|
|
501
501
|
us_bank_account.default.should == true
|
|
502
502
|
us_bank_account.ach_mandate.text.should == "cl mandate text"
|
|
503
503
|
us_bank_account.ach_mandate.accepted_at.should be_a Time
|
|
504
|
+
|
|
505
|
+
Braintree::PaymentMethod.find(us_bank_account.token).should be_a(Braintree::UsBankAccount)
|
|
504
506
|
end
|
|
505
507
|
|
|
506
508
|
it "does not creates a payment method from an invalid us bank account nonce" do
|
metadata
CHANGED
|
@@ -1,27 +1,30 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: braintree
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.69.
|
|
4
|
+
version: 2.69.1
|
|
5
|
+
prerelease:
|
|
5
6
|
platform: ruby
|
|
6
7
|
authors:
|
|
7
8
|
- Braintree
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
12
|
+
date: 2016-12-02 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: builder
|
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
16
18
|
requirements:
|
|
17
|
-
- -
|
|
19
|
+
- - ! '>='
|
|
18
20
|
- !ruby/object:Gem::Version
|
|
19
21
|
version: 2.0.0
|
|
20
22
|
type: :runtime
|
|
21
23
|
prerelease: false
|
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
23
26
|
requirements:
|
|
24
|
-
- -
|
|
27
|
+
- - ! '>='
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: 2.0.0
|
|
27
30
|
description: Ruby library for integrating with the Braintree Gateway
|
|
@@ -30,236 +33,237 @@ executables: []
|
|
|
30
33
|
extensions: []
|
|
31
34
|
extra_rdoc_files: []
|
|
32
35
|
files:
|
|
33
|
-
- LICENSE
|
|
34
36
|
- README.rdoc
|
|
35
|
-
-
|
|
37
|
+
- LICENSE
|
|
36
38
|
- lib/braintree.rb
|
|
37
|
-
- lib/braintree/
|
|
38
|
-
- lib/braintree/
|
|
39
|
-
- lib/braintree/
|
|
40
|
-
- lib/braintree/
|
|
41
|
-
- lib/braintree/
|
|
39
|
+
- lib/braintree/europe_bank_account_gateway.rb
|
|
40
|
+
- lib/braintree/webhook_testing_gateway.rb
|
|
41
|
+
- lib/braintree/successful_result.rb
|
|
42
|
+
- lib/braintree/oauth_credentials.rb
|
|
43
|
+
- lib/braintree/oauth_gateway.rb
|
|
44
|
+
- lib/braintree/customer_search.rb
|
|
45
|
+
- lib/braintree/transaction/paypal_details.rb
|
|
46
|
+
- lib/braintree/transaction/apple_pay_details.rb
|
|
47
|
+
- lib/braintree/transaction/credit_card_details.rb
|
|
48
|
+
- lib/braintree/transaction/amex_express_checkout_details.rb
|
|
49
|
+
- lib/braintree/transaction/customer_details.rb
|
|
50
|
+
- lib/braintree/transaction/android_pay_details.rb
|
|
51
|
+
- lib/braintree/transaction/disbursement_details.rb
|
|
52
|
+
- lib/braintree/transaction/subscription_details.rb
|
|
53
|
+
- lib/braintree/transaction/venmo_account_details.rb
|
|
54
|
+
- lib/braintree/transaction/us_bank_account_details.rb
|
|
55
|
+
- lib/braintree/transaction/status_details.rb
|
|
56
|
+
- lib/braintree/transaction/address_details.rb
|
|
57
|
+
- lib/braintree/transaction/coinbase_details.rb
|
|
58
|
+
- lib/braintree/credentials_parser.rb
|
|
59
|
+
- lib/braintree/us_bank_account_gateway.rb
|
|
60
|
+
- lib/braintree/subscription_gateway.rb
|
|
61
|
+
- lib/braintree/version.rb
|
|
62
|
+
- lib/braintree/settlement_batch_summary.rb
|
|
63
|
+
- lib/braintree/payment_instrument_type.rb
|
|
64
|
+
- lib/braintree/europe_bank_account.rb
|
|
65
|
+
- lib/braintree/us_bank_account.rb
|
|
66
|
+
- lib/braintree/testing_gateway.rb
|
|
67
|
+
- lib/braintree/transaction.rb
|
|
68
|
+
- lib/braintree/unknown_payment_method.rb
|
|
42
69
|
- lib/braintree/address/country_names.rb
|
|
43
|
-
- lib/braintree/
|
|
44
|
-
- lib/braintree/advanced_search.rb
|
|
45
|
-
- lib/braintree/amex_express_checkout_card.rb
|
|
46
|
-
- lib/braintree/android_pay_card.rb
|
|
47
|
-
- lib/braintree/apple_pay_card.rb
|
|
70
|
+
- lib/braintree/facilitator_details.rb
|
|
48
71
|
- lib/braintree/base_module.rb
|
|
49
|
-
- lib/braintree/
|
|
50
|
-
- lib/braintree/
|
|
51
|
-
- lib/braintree/
|
|
52
|
-
- lib/braintree/
|
|
53
|
-
- lib/braintree/
|
|
72
|
+
- lib/braintree/errors.rb
|
|
73
|
+
- lib/braintree/payment_method_gateway.rb
|
|
74
|
+
- lib/braintree/validation_error.rb
|
|
75
|
+
- lib/braintree/resource_collection.rb
|
|
76
|
+
- lib/braintree/merchant_gateway.rb
|
|
77
|
+
- lib/braintree/gateway.rb
|
|
78
|
+
- lib/braintree/plan_gateway.rb
|
|
54
79
|
- lib/braintree/credit_card.rb
|
|
55
|
-
- lib/braintree/credit_card_gateway.rb
|
|
56
|
-
- lib/braintree/credit_card_verification.rb
|
|
57
|
-
- lib/braintree/credit_card_verification_gateway.rb
|
|
58
|
-
- lib/braintree/credit_card_verification_search.rb
|
|
59
|
-
- lib/braintree/customer.rb
|
|
60
|
-
- lib/braintree/customer_gateway.rb
|
|
61
|
-
- lib/braintree/customer_search.rb
|
|
62
|
-
- lib/braintree/descriptor.rb
|
|
63
80
|
- lib/braintree/digest.rb
|
|
64
|
-
- lib/braintree/
|
|
65
|
-
- lib/braintree/
|
|
66
|
-
- lib/braintree/discount_gateway.rb
|
|
67
|
-
- lib/braintree/dispute.rb
|
|
68
|
-
- lib/braintree/dispute/transaction_details.rb
|
|
81
|
+
- lib/braintree/coinbase_account.rb
|
|
82
|
+
- lib/braintree/ach_mandate.rb
|
|
69
83
|
- lib/braintree/error_codes.rb
|
|
70
|
-
- lib/braintree/
|
|
71
|
-
- lib/braintree/
|
|
72
|
-
- lib/braintree/
|
|
73
|
-
- lib/braintree/europe_bank_account_gateway.rb
|
|
74
|
-
- lib/braintree/exceptions.rb
|
|
75
|
-
- lib/braintree/facilitator_details.rb
|
|
76
|
-
- lib/braintree/gateway.rb
|
|
77
|
-
- lib/braintree/http.rb
|
|
84
|
+
- lib/braintree/dispute/transaction_details.rb
|
|
85
|
+
- lib/braintree/add_on.rb
|
|
86
|
+
- lib/braintree/payment_method.rb
|
|
78
87
|
- lib/braintree/merchant.rb
|
|
79
|
-
- lib/braintree/
|
|
80
|
-
- lib/braintree/
|
|
81
|
-
- lib/braintree/
|
|
82
|
-
- lib/braintree/merchant_account/funding_details.rb
|
|
83
|
-
- lib/braintree/merchant_account/individual_details.rb
|
|
84
|
-
- lib/braintree/merchant_account_gateway.rb
|
|
85
|
-
- lib/braintree/merchant_gateway.rb
|
|
88
|
+
- lib/braintree/venmo_account.rb
|
|
89
|
+
- lib/braintree/http.rb
|
|
90
|
+
- lib/braintree/configuration.rb
|
|
86
91
|
- lib/braintree/modification.rb
|
|
87
|
-
- lib/braintree/
|
|
88
|
-
- lib/braintree/
|
|
89
|
-
- lib/braintree/
|
|
90
|
-
- lib/braintree/
|
|
91
|
-
- lib/braintree/payment_method_gateway.rb
|
|
92
|
-
- lib/braintree/payment_method_nonce.rb
|
|
93
|
-
- lib/braintree/payment_method_nonce_gateway.rb
|
|
94
|
-
- lib/braintree/paypal_account.rb
|
|
95
|
-
- lib/braintree/paypal_account_gateway.rb
|
|
96
|
-
- lib/braintree/plan.rb
|
|
97
|
-
- lib/braintree/plan_gateway.rb
|
|
98
|
-
- lib/braintree/resource_collection.rb
|
|
99
|
-
- lib/braintree/risk_data.rb
|
|
100
|
-
- lib/braintree/settlement_batch.rb
|
|
101
|
-
- lib/braintree/settlement_batch_summary.rb
|
|
102
|
-
- lib/braintree/settlement_batch_summary_gateway.rb
|
|
103
|
-
- lib/braintree/sha256_digest.rb
|
|
104
|
-
- lib/braintree/signature_service.rb
|
|
105
|
-
- lib/braintree/subscription.rb
|
|
106
|
-
- lib/braintree/subscription/status_details.rb
|
|
107
|
-
- lib/braintree/subscription_gateway.rb
|
|
108
|
-
- lib/braintree/subscription_search.rb
|
|
109
|
-
- lib/braintree/successful_result.rb
|
|
92
|
+
- lib/braintree/merchant_account_gateway.rb
|
|
93
|
+
- lib/braintree/xml.rb
|
|
94
|
+
- lib/braintree/apple_pay_card.rb
|
|
95
|
+
- lib/braintree/test/transaction_amounts.rb
|
|
110
96
|
- lib/braintree/test/credit_card.rb
|
|
111
97
|
- lib/braintree/test/merchant_account.rb
|
|
112
|
-
- lib/braintree/test/nonce.rb
|
|
113
|
-
- lib/braintree/test/transaction_amounts.rb
|
|
114
98
|
- lib/braintree/test/venmo_sdk.rb
|
|
115
|
-
- lib/braintree/
|
|
116
|
-
- lib/braintree/testing_gateway.rb
|
|
117
|
-
- lib/braintree/three_d_secure_info.rb
|
|
118
|
-
- lib/braintree/transaction.rb
|
|
119
|
-
- lib/braintree/transaction/address_details.rb
|
|
120
|
-
- lib/braintree/transaction/amex_express_checkout_details.rb
|
|
121
|
-
- lib/braintree/transaction/android_pay_details.rb
|
|
122
|
-
- lib/braintree/transaction/apple_pay_details.rb
|
|
123
|
-
- lib/braintree/transaction/coinbase_details.rb
|
|
124
|
-
- lib/braintree/transaction/credit_card_details.rb
|
|
125
|
-
- lib/braintree/transaction/customer_details.rb
|
|
126
|
-
- lib/braintree/transaction/disbursement_details.rb
|
|
127
|
-
- lib/braintree/transaction/paypal_details.rb
|
|
128
|
-
- lib/braintree/transaction/status_details.rb
|
|
129
|
-
- lib/braintree/transaction/subscription_details.rb
|
|
130
|
-
- lib/braintree/transaction/us_bank_account_details.rb
|
|
131
|
-
- lib/braintree/transaction/venmo_account_details.rb
|
|
99
|
+
- lib/braintree/test/nonce.rb
|
|
132
100
|
- lib/braintree/transaction_gateway.rb
|
|
133
|
-
- lib/braintree/
|
|
101
|
+
- lib/braintree/validation_error_collection.rb
|
|
102
|
+
- lib/braintree/credit_card_verification.rb
|
|
103
|
+
- lib/braintree/discount_gateway.rb
|
|
104
|
+
- lib/braintree/disbursement.rb
|
|
105
|
+
- lib/braintree/descriptor.rb
|
|
106
|
+
- lib/braintree/merchant_account/business_details.rb
|
|
107
|
+
- lib/braintree/merchant_account/individual_details.rb
|
|
108
|
+
- lib/braintree/merchant_account/funding_details.rb
|
|
109
|
+
- lib/braintree/merchant_account/address_details.rb
|
|
110
|
+
- lib/braintree/subscription/status_details.rb
|
|
111
|
+
- lib/braintree/customer.rb
|
|
112
|
+
- lib/braintree/merchant_account.rb
|
|
113
|
+
- lib/braintree/customer_gateway.rb
|
|
114
|
+
- lib/braintree/error_result.rb
|
|
115
|
+
- lib/braintree/sha256_digest.rb
|
|
116
|
+
- lib/braintree/credit_card_verification_gateway.rb
|
|
117
|
+
- lib/braintree/webhook_testing.rb
|
|
118
|
+
- lib/braintree/risk_data.rb
|
|
119
|
+
- lib/braintree/account_updater_daily_report.rb
|
|
120
|
+
- lib/braintree/client_token.rb
|
|
134
121
|
- lib/braintree/transparent_redirect.rb
|
|
135
|
-
- lib/braintree/
|
|
136
|
-
- lib/braintree/
|
|
137
|
-
- lib/braintree/
|
|
138
|
-
- lib/braintree/us_bank_account_gateway.rb
|
|
122
|
+
- lib/braintree/advanced_search.rb
|
|
123
|
+
- lib/braintree/paypal_account.rb
|
|
124
|
+
- lib/braintree/credit_card_verification_search.rb
|
|
139
125
|
- lib/braintree/util.rb
|
|
140
|
-
- lib/braintree/validation_error.rb
|
|
141
|
-
- lib/braintree/validation_error_collection.rb
|
|
142
|
-
- lib/braintree/venmo_account.rb
|
|
143
|
-
- lib/braintree/version.rb
|
|
144
|
-
- lib/braintree/webhook_notification.rb
|
|
145
126
|
- lib/braintree/webhook_notification_gateway.rb
|
|
146
|
-
- lib/braintree/
|
|
147
|
-
- lib/braintree/
|
|
148
|
-
- lib/braintree/
|
|
127
|
+
- lib/braintree/plan.rb
|
|
128
|
+
- lib/braintree/test_transaction.rb
|
|
129
|
+
- lib/braintree/payment_method_nonce.rb
|
|
130
|
+
- lib/braintree/discount.rb
|
|
131
|
+
- lib/braintree/transaction_search.rb
|
|
132
|
+
- lib/braintree/settlement_batch.rb
|
|
133
|
+
- lib/braintree/amex_express_checkout_card.rb
|
|
134
|
+
- lib/braintree/xml/rexml.rb
|
|
149
135
|
- lib/braintree/xml/generator.rb
|
|
150
|
-
- lib/braintree/xml/libxml.rb
|
|
151
136
|
- lib/braintree/xml/parser.rb
|
|
152
|
-
- lib/braintree/xml/
|
|
137
|
+
- lib/braintree/xml/libxml.rb
|
|
138
|
+
- lib/braintree/signature_service.rb
|
|
139
|
+
- lib/braintree/payment_method_nonce_gateway.rb
|
|
140
|
+
- lib/braintree/android_pay_card.rb
|
|
141
|
+
- lib/braintree/client_token_gateway.rb
|
|
142
|
+
- lib/braintree/address_gateway.rb
|
|
143
|
+
- lib/braintree/credit_card_gateway.rb
|
|
144
|
+
- lib/braintree/three_d_secure_info.rb
|
|
145
|
+
- lib/braintree/add_on_gateway.rb
|
|
146
|
+
- lib/braintree/subscription.rb
|
|
147
|
+
- lib/braintree/exceptions.rb
|
|
148
|
+
- lib/braintree/webhook_notification.rb
|
|
149
|
+
- lib/braintree/address.rb
|
|
150
|
+
- lib/braintree/settlement_batch_summary_gateway.rb
|
|
151
|
+
- lib/braintree/dispute.rb
|
|
152
|
+
- lib/braintree/paypal_account_gateway.rb
|
|
153
|
+
- lib/braintree/subscription_search.rb
|
|
154
|
+
- lib/braintree/transparent_redirect_gateway.rb
|
|
153
155
|
- lib/ssl/api_braintreegateway_com.ca.crt
|
|
154
156
|
- lib/ssl/securetrust_ca.crt
|
|
155
|
-
- spec/
|
|
156
|
-
- spec/
|
|
157
|
-
- spec/integration/
|
|
158
|
-
- spec/integration/braintree/address_spec.rb
|
|
159
|
-
- spec/integration/braintree/advanced_search_spec.rb
|
|
160
|
-
- spec/integration/braintree/client_api/client_token_spec.rb
|
|
161
|
-
- spec/integration/braintree/client_api/spec_helper.rb
|
|
162
|
-
- spec/integration/braintree/coinbase_spec.rb
|
|
163
|
-
- spec/integration/braintree/credit_card_spec.rb
|
|
164
|
-
- spec/integration/braintree/credit_card_verification_search_spec.rb
|
|
165
|
-
- spec/integration/braintree/credit_card_verification_spec.rb
|
|
157
|
+
- spec/spec.opts
|
|
158
|
+
- spec/spec_helper.rb
|
|
159
|
+
- spec/integration/spec_helper.rb
|
|
166
160
|
- spec/integration/braintree/customer_search_spec.rb
|
|
167
|
-
- spec/integration/braintree/customer_spec.rb
|
|
168
|
-
- spec/integration/braintree/disbursement_spec.rb
|
|
169
|
-
- spec/integration/braintree/discount_spec.rb
|
|
170
|
-
- spec/integration/braintree/error_codes_spec.rb
|
|
171
161
|
- spec/integration/braintree/http_spec.rb
|
|
172
162
|
- spec/integration/braintree/merchant_account_spec.rb
|
|
173
|
-
- spec/integration/braintree/merchant_spec.rb
|
|
174
|
-
- spec/integration/braintree/oauth_spec.rb
|
|
175
|
-
- spec/integration/braintree/payment_method_nonce_spec.rb
|
|
176
163
|
- spec/integration/braintree/payment_method_spec.rb
|
|
164
|
+
- spec/integration/braintree/add_on_spec.rb
|
|
177
165
|
- spec/integration/braintree/paypal_account_spec.rb
|
|
178
166
|
- spec/integration/braintree/plan_spec.rb
|
|
179
|
-
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
|
180
167
|
- spec/integration/braintree/subscription_spec.rb
|
|
168
|
+
- spec/integration/braintree/error_codes_spec.rb
|
|
169
|
+
- spec/integration/braintree/us_bank_account_spec.rb
|
|
170
|
+
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
|
171
|
+
- spec/integration/braintree/transaction_spec.rb
|
|
181
172
|
- spec/integration/braintree/test/transaction_amounts_spec.rb
|
|
182
|
-
- spec/integration/braintree/
|
|
173
|
+
- spec/integration/braintree/address_spec.rb
|
|
174
|
+
- spec/integration/braintree/credit_card_spec.rb
|
|
175
|
+
- spec/integration/braintree/disbursement_spec.rb
|
|
183
176
|
- spec/integration/braintree/transaction_search_spec.rb
|
|
184
|
-
- spec/integration/braintree/
|
|
177
|
+
- spec/integration/braintree/credit_card_verification_spec.rb
|
|
178
|
+
- spec/integration/braintree/oauth_spec.rb
|
|
179
|
+
- spec/integration/braintree/test_transaction_spec.rb
|
|
185
180
|
- spec/integration/braintree/transparent_redirect_spec.rb
|
|
186
|
-
- spec/integration/braintree/
|
|
187
|
-
- spec/integration/
|
|
188
|
-
- spec/
|
|
189
|
-
- spec/
|
|
190
|
-
- spec/
|
|
191
|
-
- spec/
|
|
181
|
+
- spec/integration/braintree/customer_spec.rb
|
|
182
|
+
- spec/integration/braintree/coinbase_spec.rb
|
|
183
|
+
- spec/integration/braintree/payment_method_nonce_spec.rb
|
|
184
|
+
- spec/integration/braintree/client_api/spec_helper.rb
|
|
185
|
+
- spec/integration/braintree/client_api/client_token_spec.rb
|
|
186
|
+
- spec/integration/braintree/advanced_search_spec.rb
|
|
187
|
+
- spec/integration/braintree/discount_spec.rb
|
|
188
|
+
- spec/integration/braintree/merchant_spec.rb
|
|
189
|
+
- spec/integration/braintree/credit_card_verification_search_spec.rb
|
|
192
190
|
- spec/ssl/certificate.crt
|
|
193
|
-
- spec/ssl/geotrust_global.crt
|
|
194
191
|
- spec/ssl/privateKey.key
|
|
195
|
-
- spec/
|
|
196
|
-
- spec/
|
|
197
|
-
- spec/
|
|
198
|
-
- spec/
|
|
199
|
-
- spec/unit/
|
|
200
|
-
- spec/unit/
|
|
201
|
-
- spec/unit/braintree/credit_card_spec.rb
|
|
202
|
-
- spec/unit/braintree/credit_card_verification_search_spec.rb
|
|
203
|
-
- spec/unit/braintree/credit_card_verification_spec.rb
|
|
204
|
-
- spec/unit/braintree/customer_spec.rb
|
|
205
|
-
- spec/unit/braintree/digest_spec.rb
|
|
206
|
-
- spec/unit/braintree/disbursement_spec.rb
|
|
207
|
-
- spec/unit/braintree/dispute_spec.rb
|
|
208
|
-
- spec/unit/braintree/error_result_spec.rb
|
|
209
|
-
- spec/unit/braintree/errors_spec.rb
|
|
192
|
+
- spec/ssl/geotrust_global.crt
|
|
193
|
+
- spec/script/httpsd.rb
|
|
194
|
+
- spec/hacks/tcp_socket.rb
|
|
195
|
+
- spec/httpsd.pid
|
|
196
|
+
- spec/unit/spec_helper.rb
|
|
197
|
+
- spec/unit/braintree_spec.rb
|
|
210
198
|
- spec/unit/braintree/http_spec.rb
|
|
199
|
+
- spec/unit/braintree/digest_spec.rb
|
|
200
|
+
- spec/unit/braintree/transaction/credit_card_details_spec.rb
|
|
201
|
+
- spec/unit/braintree/transaction/deposit_details_spec.rb
|
|
202
|
+
- spec/unit/braintree/transaction/customer_details_spec.rb
|
|
211
203
|
- spec/unit/braintree/merchant_account_spec.rb
|
|
212
|
-
- spec/unit/braintree/
|
|
204
|
+
- spec/unit/braintree/credentials_parser_spec.rb
|
|
205
|
+
- spec/unit/braintree/successful_result_spec.rb
|
|
213
206
|
- spec/unit/braintree/payment_method_spec.rb
|
|
207
|
+
- spec/unit/braintree/modification_spec.rb
|
|
208
|
+
- spec/unit/braintree/errors_spec.rb
|
|
214
209
|
- spec/unit/braintree/paypal_account_spec.rb
|
|
215
|
-
- spec/unit/braintree/resource_collection_spec.rb
|
|
216
|
-
- spec/unit/braintree/risk_data_spec.rb
|
|
217
|
-
- spec/unit/braintree/sha256_digest_spec.rb
|
|
218
210
|
- spec/unit/braintree/signature_service_spec.rb
|
|
219
|
-
- spec/unit/braintree/
|
|
211
|
+
- spec/unit/braintree/base_module_spec.rb
|
|
212
|
+
- spec/unit/braintree/apple_pay_card_spec.rb
|
|
220
213
|
- spec/unit/braintree/subscription_spec.rb
|
|
221
|
-
- spec/unit/braintree/
|
|
214
|
+
- spec/unit/braintree/us_bank_account_spec.rb
|
|
215
|
+
- spec/unit/braintree/transaction_spec.rb
|
|
216
|
+
- spec/unit/braintree/xml_spec.rb
|
|
222
217
|
- spec/unit/braintree/three_d_secure_info_spec.rb
|
|
223
|
-
- spec/unit/braintree/
|
|
224
|
-
- spec/unit/braintree/
|
|
225
|
-
- spec/unit/braintree/
|
|
218
|
+
- spec/unit/braintree/risk_data_spec.rb
|
|
219
|
+
- spec/unit/braintree/address_spec.rb
|
|
220
|
+
- spec/unit/braintree/validation_error_collection_spec.rb
|
|
221
|
+
- spec/unit/braintree/credit_card_spec.rb
|
|
222
|
+
- spec/unit/braintree/dispute_spec.rb
|
|
223
|
+
- spec/unit/braintree/disbursement_spec.rb
|
|
226
224
|
- spec/unit/braintree/transaction_search_spec.rb
|
|
227
|
-
- spec/unit/braintree/
|
|
225
|
+
- spec/unit/braintree/validation_error_spec.rb
|
|
226
|
+
- spec/unit/braintree/credit_card_verification_spec.rb
|
|
227
|
+
- spec/unit/braintree/error_result_spec.rb
|
|
228
|
+
- spec/unit/braintree/client_token_spec.rb
|
|
229
|
+
- spec/unit/braintree/subscription_search_spec.rb
|
|
228
230
|
- spec/unit/braintree/transparent_redirect_spec.rb
|
|
229
|
-
- spec/unit/braintree/
|
|
230
|
-
- spec/unit/braintree/us_bank_account_spec.rb
|
|
231
|
+
- spec/unit/braintree/resource_collection_spec.rb
|
|
231
232
|
- spec/unit/braintree/util_spec.rb
|
|
232
|
-
- spec/unit/braintree/
|
|
233
|
-
- spec/unit/braintree/validation_error_spec.rb
|
|
234
|
-
- spec/unit/braintree/webhook_notification_spec.rb
|
|
235
|
-
- spec/unit/braintree/xml/libxml_spec.rb
|
|
233
|
+
- spec/unit/braintree/customer_spec.rb
|
|
236
234
|
- spec/unit/braintree/xml/parser_spec.rb
|
|
235
|
+
- spec/unit/braintree/xml/libxml_spec.rb
|
|
237
236
|
- spec/unit/braintree/xml/rexml_spec.rb
|
|
238
|
-
- spec/unit/braintree/
|
|
239
|
-
- spec/unit/
|
|
240
|
-
- spec/unit/
|
|
237
|
+
- spec/unit/braintree/webhook_notification_spec.rb
|
|
238
|
+
- spec/unit/braintree/sha256_digest_spec.rb
|
|
239
|
+
- spec/unit/braintree/unknown_payment_method_spec.rb
|
|
240
|
+
- spec/unit/braintree/configuration_spec.rb
|
|
241
|
+
- spec/unit/braintree/credit_card_verification_search_spec.rb
|
|
242
|
+
- spec/oauth_test_helper.rb
|
|
243
|
+
- braintree.gemspec
|
|
241
244
|
homepage: http://www.braintreepayments.com/
|
|
242
245
|
licenses:
|
|
243
246
|
- MIT
|
|
244
|
-
metadata: {}
|
|
245
247
|
post_install_message:
|
|
246
248
|
rdoc_options: []
|
|
247
249
|
require_paths:
|
|
248
250
|
- lib
|
|
249
251
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
252
|
+
none: false
|
|
250
253
|
requirements:
|
|
251
|
-
- -
|
|
254
|
+
- - ! '>='
|
|
252
255
|
- !ruby/object:Gem::Version
|
|
253
256
|
version: '0'
|
|
254
257
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
258
|
+
none: false
|
|
255
259
|
requirements:
|
|
256
|
-
- -
|
|
260
|
+
- - ! '>='
|
|
257
261
|
- !ruby/object:Gem::Version
|
|
258
262
|
version: '0'
|
|
259
263
|
requirements: []
|
|
260
264
|
rubyforge_project: braintree
|
|
261
|
-
rubygems_version:
|
|
265
|
+
rubygems_version: 1.8.23
|
|
262
266
|
signing_key:
|
|
263
|
-
specification_version:
|
|
267
|
+
specification_version: 3
|
|
264
268
|
summary: Braintree Gateway Ruby Client Library
|
|
265
269
|
test_files: []
|
checksums.yaml
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz: 34d2cb3afbf9042bb515975c43696987335b8691
|
|
4
|
-
data.tar.gz: 02d627a19b5a6020b3e0f6d59131094cc7bdaa96
|
|
5
|
-
SHA512:
|
|
6
|
-
metadata.gz: 4c14748930d920ffb8563ba7a93396fbcf554f769c60db0e5a077d7a648f8f5f1e672828c7a5b57f211f4526e4d5d7571bb6ea2b331082845dd1c5db23a69169
|
|
7
|
-
data.tar.gz: 9dc3a49b9a3075c8c58eedef3c9231452b4349d7f3b69ebd6b81b744062641096f7d74998d418386a277754169574c270b580abb1c750af91bd04684eedfd5d4
|