braintree 2.69.1 → 2.70.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -171,6 +171,25 @@ describe Braintree::Transaction do
171
171
  transaction.three_d_secure_info.liability_shift_possible.should == true
172
172
  end
173
173
 
174
+ it "sets up ideal_payment_details" do
175
+ transaction = Braintree::Transaction._new(
176
+ :gateway,
177
+ :ideal_payment => {
178
+ :ideal_payment_id => "idealpayment_abc_123",
179
+ :ideal_transaction_id => "1150000008857321",
180
+ :masked_iban => "12************7890",
181
+ :bic => "RABONL2U",
182
+ :image_url => "http://www.example.com/ideal.png"
183
+ }
184
+ )
185
+
186
+ transaction.ideal_payment_details.ideal_payment_id.should == "idealpayment_abc_123"
187
+ transaction.ideal_payment_details.ideal_transaction_id.should == "1150000008857321"
188
+ transaction.ideal_payment_details.masked_iban.should == "12************7890"
189
+ transaction.ideal_payment_details.bic.should == "RABONL2U"
190
+ transaction.ideal_payment_details.image_url.should == "http://www.example.com/ideal.png"
191
+ end
192
+
174
193
  it "sets up history attributes in status_history" do
175
194
  time = Time.utc(2010,1,14)
176
195
  transaction = Braintree::Transaction._new(
@@ -279,4 +298,62 @@ describe Braintree::Transaction do
279
298
  transaction.refunded?.should == false
280
299
  end
281
300
  end
301
+
302
+ describe "sale" do
303
+ let(:mock_response) { {:transaction => {}}}
304
+ let(:http_stub) { double('http_stub').as_null_object }
305
+
306
+ RSpec::Matchers.define :skip_advanced_fraud_check_value_is do |value|
307
+ match { |params| params[:transaction][:options][:skip_advanced_fraud_checking] == value }
308
+ end
309
+
310
+ it "accepts skip_advanced_fraud_checking options with value true" do
311
+ Braintree::Http.stub(:new).and_return http_stub
312
+ expect(http_stub).to receive(:post).with(anything, skip_advanced_fraud_check_value_is(true)).and_return(mock_response)
313
+
314
+ Braintree::Transaction.sale(
315
+ :amount => Braintree::Test::TransactionAmounts::Authorize,
316
+ :credit_card => {
317
+ :number => Braintree::Test::CreditCardNumbers::Visa,
318
+ :expiration_date => "05/2009"
319
+ },
320
+ :options => {
321
+ :skip_advanced_fraud_checking => true
322
+ }
323
+ )
324
+ end
325
+
326
+ it "accepts skip_advanced_fraud_checking options with value false" do
327
+ Braintree::Http.stub(:new).and_return http_stub
328
+ expect(http_stub).to receive(:post).with(anything, skip_advanced_fraud_check_value_is(false)).and_return(mock_response)
329
+
330
+ Braintree::Transaction.sale(
331
+ :amount => Braintree::Test::TransactionAmounts::Authorize,
332
+ :credit_card => {
333
+ :number => Braintree::Test::CreditCardNumbers::Visa,
334
+ :expiration_date => "05/2009"
335
+ },
336
+ :options => {
337
+ :skip_advanced_fraud_checking => false
338
+ }
339
+ )
340
+ end
341
+
342
+ it "doesn't include skip_advanced_fraud_checking in params if its not specified" do
343
+ Braintree::Http.stub(:new).and_return http_stub
344
+ expect(http_stub).to receive(:post).with(anything, skip_advanced_fraud_check_value_is(nil)).and_return(mock_response)
345
+
346
+ Braintree::Transaction.sale(
347
+ :amount => Braintree::Test::TransactionAmounts::Authorize,
348
+ :credit_card => {
349
+ :number => Braintree::Test::CreditCardNumbers::Visa,
350
+ :expiration_date => "05/2009"
351
+ },
352
+ :options => {
353
+ :submit_for_settlement => false
354
+ }
355
+ )
356
+ end
357
+ end
358
+
282
359
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: braintree
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.69.1
4
+ version: 2.70.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-12-02 00:00:00.000000000 Z
12
+ date: 2017-01-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: builder
@@ -35,211 +35,215 @@ extra_rdoc_files: []
35
35
  files:
36
36
  - README.rdoc
37
37
  - LICENSE
38
- - lib/braintree.rb
39
- - lib/braintree/europe_bank_account_gateway.rb
38
+ - lib/braintree/account_updater_daily_report.rb
40
39
  - lib/braintree/webhook_testing_gateway.rb
40
+ - lib/braintree/version.rb
41
+ - lib/braintree/plan.rb
42
+ - lib/braintree/ach_mandate.rb
43
+ - lib/braintree/configuration.rb
44
+ - lib/braintree/disbursement.rb
41
45
  - 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
46
+ - lib/braintree/dispute.rb
47
+ - lib/braintree/exceptions.rb
48
+ - lib/braintree/add_on_gateway.rb
49
+ - lib/braintree/payment_instrument_type.rb
50
+ - lib/braintree/transaction_search.rb
51
+ - lib/braintree/util.rb
52
+ - lib/braintree/credit_card_verification.rb
53
+ - lib/braintree/test/nonce.rb
54
+ - lib/braintree/test/credit_card.rb
55
+ - lib/braintree/test/transaction_amounts.rb
56
+ - lib/braintree/test/merchant_account.rb
57
+ - lib/braintree/test/venmo_sdk.rb
47
58
  - 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
59
  - lib/braintree/transaction/subscription_details.rb
53
- - lib/braintree/transaction/venmo_account_details.rb
54
- - lib/braintree/transaction/us_bank_account_details.rb
55
60
  - lib/braintree/transaction/status_details.rb
61
+ - lib/braintree/transaction/venmo_account_details.rb
62
+ - lib/braintree/transaction/disbursement_details.rb
56
63
  - lib/braintree/transaction/address_details.rb
64
+ - lib/braintree/transaction/amex_express_checkout_details.rb
65
+ - lib/braintree/transaction/ideal_payment_details.rb
66
+ - lib/braintree/transaction/customer_details.rb
67
+ - lib/braintree/transaction/us_bank_account_details.rb
68
+ - lib/braintree/transaction/android_pay_details.rb
69
+ - lib/braintree/transaction/paypal_details.rb
70
+ - lib/braintree/transaction/apple_pay_details.rb
57
71
  - lib/braintree/transaction/coinbase_details.rb
58
- - lib/braintree/credentials_parser.rb
59
- - lib/braintree/us_bank_account_gateway.rb
72
+ - lib/braintree/risk_data.rb
73
+ - lib/braintree/ideal_payment.rb
74
+ - lib/braintree/credit_card_verification_search.rb
75
+ - lib/braintree/transparent_redirect_gateway.rb
76
+ - lib/braintree/three_d_secure_info.rb
77
+ - lib/braintree/merchant_gateway.rb
78
+ - lib/braintree/subscription/status_details.rb
79
+ - lib/braintree/address/country_names.rb
80
+ - lib/braintree/settlement_batch.rb
81
+ - lib/braintree/validation_error.rb
82
+ - lib/braintree/webhook_notification.rb
83
+ - lib/braintree/client_token_gateway.rb
60
84
  - 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
85
  - lib/braintree/testing_gateway.rb
67
- - lib/braintree/transaction.rb
68
- - lib/braintree/unknown_payment_method.rb
69
- - lib/braintree/address/country_names.rb
70
- - lib/braintree/facilitator_details.rb
86
+ - lib/braintree/address_gateway.rb
87
+ - lib/braintree/payment_method.rb
88
+ - lib/braintree/webhook_notification_gateway.rb
89
+ - lib/braintree/webhook_testing.rb
71
90
  - lib/braintree/base_module.rb
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
91
+ - lib/braintree/oauth_credentials.rb
92
+ - lib/braintree/customer_gateway.rb
93
+ - lib/braintree/ideal_payment_gateway.rb
94
+ - lib/braintree/modification.rb
95
+ - lib/braintree/payment_method_nonce_gateway.rb
78
96
  - lib/braintree/plan_gateway.rb
79
97
  - lib/braintree/credit_card.rb
80
- - lib/braintree/digest.rb
81
- - lib/braintree/coinbase_account.rb
82
- - lib/braintree/ach_mandate.rb
83
- - lib/braintree/error_codes.rb
84
- - lib/braintree/dispute/transaction_details.rb
85
- - lib/braintree/add_on.rb
86
- - lib/braintree/payment_method.rb
87
98
  - lib/braintree/merchant.rb
88
- - lib/braintree/venmo_account.rb
89
- - lib/braintree/http.rb
90
- - lib/braintree/configuration.rb
91
- - lib/braintree/modification.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
96
- - lib/braintree/test/credit_card.rb
97
- - lib/braintree/test/merchant_account.rb
98
- - lib/braintree/test/venmo_sdk.rb
99
- - lib/braintree/test/nonce.rb
99
+ - lib/braintree/advanced_search.rb
100
+ - lib/braintree/test_transaction.rb
100
101
  - lib/braintree/transaction_gateway.rb
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
102
+ - lib/braintree/payment_method_gateway.rb
103
+ - lib/braintree/settlement_batch_summary.rb
108
104
  - lib/braintree/merchant_account/funding_details.rb
109
105
  - lib/braintree/merchant_account/address_details.rb
110
- - lib/braintree/subscription/status_details.rb
111
- - lib/braintree/customer.rb
106
+ - lib/braintree/merchant_account/business_details.rb
107
+ - lib/braintree/merchant_account/individual_details.rb
108
+ - lib/braintree/dispute/transaction_details.rb
109
+ - lib/braintree/facilitator_details.rb
110
+ - lib/braintree/validation_error_collection.rb
111
+ - lib/braintree/sha256_digest.rb
112
+ - lib/braintree/europe_bank_account.rb
113
+ - lib/braintree/transaction.rb
114
+ - lib/braintree/subscription.rb
115
+ - lib/braintree/xml.rb
112
116
  - lib/braintree/merchant_account.rb
113
- - lib/braintree/customer_gateway.rb
117
+ - lib/braintree/apple_pay_card.rb
114
118
  - 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
119
+ - lib/braintree/payment_method_nonce.rb
120
+ - lib/braintree/oauth_gateway.rb
121
+ - lib/braintree/descriptor.rb
122
+ - lib/braintree/add_on.rb
123
+ - lib/braintree/resource_collection.rb
124
+ - lib/braintree/coinbase_account.rb
125
+ - lib/braintree/digest.rb
126
+ - lib/braintree/gateway.rb
127
+ - lib/braintree/amex_express_checkout_card.rb
128
+ - lib/braintree/customer.rb
129
+ - lib/braintree/us_bank_account.rb
120
130
  - lib/braintree/client_token.rb
131
+ - lib/braintree/paypal_account_gateway.rb
132
+ - lib/braintree/europe_bank_account_gateway.rb
133
+ - lib/braintree/us_bank_account_gateway.rb
121
134
  - lib/braintree/transparent_redirect.rb
122
- - lib/braintree/advanced_search.rb
135
+ - lib/braintree/credentials_parser.rb
136
+ - lib/braintree/errors.rb
137
+ - lib/braintree/unknown_payment_method.rb
138
+ - lib/braintree/customer_search.rb
139
+ - lib/braintree/error_codes.rb
140
+ - lib/braintree/discount_gateway.rb
141
+ - lib/braintree/subscription_search.rb
142
+ - lib/braintree/http.rb
143
+ - lib/braintree/address.rb
144
+ - lib/braintree/venmo_account.rb
145
+ - lib/braintree/credit_card_gateway.rb
146
+ - lib/braintree/credit_card_verification_gateway.rb
147
+ - lib/braintree/merchant_account_gateway.rb
148
+ - lib/braintree/android_pay_card.rb
123
149
  - lib/braintree/paypal_account.rb
124
- - lib/braintree/credit_card_verification_search.rb
125
- - lib/braintree/util.rb
126
- - lib/braintree/webhook_notification_gateway.rb
127
- - lib/braintree/plan.rb
128
- - lib/braintree/test_transaction.rb
129
- - lib/braintree/payment_method_nonce.rb
150
+ - lib/braintree/signature_service.rb
151
+ - lib/braintree/settlement_batch_summary_gateway.rb
130
152
  - 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
153
  - lib/braintree/xml/rexml.rb
135
154
  - lib/braintree/xml/generator.rb
136
- - lib/braintree/xml/parser.rb
137
155
  - 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
156
+ - lib/braintree/xml/parser.rb
157
+ - lib/braintree.rb
155
158
  - lib/ssl/api_braintreegateway_com.ca.crt
156
159
  - lib/ssl/securetrust_ca.crt
157
- - spec/spec.opts
158
- - spec/spec_helper.rb
159
- - spec/integration/spec_helper.rb
160
- - spec/integration/braintree/customer_search_spec.rb
161
- - spec/integration/braintree/http_spec.rb
162
- - spec/integration/braintree/merchant_account_spec.rb
163
- - spec/integration/braintree/payment_method_spec.rb
164
- - spec/integration/braintree/add_on_spec.rb
165
- - spec/integration/braintree/paypal_account_spec.rb
166
- - spec/integration/braintree/plan_spec.rb
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
172
- - spec/integration/braintree/test/transaction_amounts_spec.rb
173
- - spec/integration/braintree/address_spec.rb
174
- - spec/integration/braintree/credit_card_spec.rb
175
- - spec/integration/braintree/disbursement_spec.rb
176
- - spec/integration/braintree/transaction_search_spec.rb
177
- - spec/integration/braintree/credit_card_verification_spec.rb
178
- - spec/integration/braintree/oauth_spec.rb
179
- - spec/integration/braintree/test_transaction_spec.rb
180
- - spec/integration/braintree/transparent_redirect_spec.rb
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
190
- - spec/ssl/certificate.crt
191
- - spec/ssl/privateKey.key
192
- - spec/ssl/geotrust_global.crt
193
- - spec/script/httpsd.rb
194
- - spec/hacks/tcp_socket.rb
195
160
  - spec/httpsd.pid
196
- - spec/unit/spec_helper.rb
197
- - spec/unit/braintree_spec.rb
161
+ - spec/script/httpsd.rb
162
+ - spec/unit/braintree/base_module_spec.rb
163
+ - spec/unit/braintree/signature_service_spec.rb
198
164
  - spec/unit/braintree/http_spec.rb
199
- - spec/unit/braintree/digest_spec.rb
200
- - spec/unit/braintree/transaction/credit_card_details_spec.rb
165
+ - spec/unit/braintree/modification_spec.rb
166
+ - spec/unit/braintree/credit_card_verification_search_spec.rb
201
167
  - spec/unit/braintree/transaction/deposit_details_spec.rb
202
168
  - spec/unit/braintree/transaction/customer_details_spec.rb
203
- - spec/unit/braintree/merchant_account_spec.rb
204
- - spec/unit/braintree/credentials_parser_spec.rb
205
- - spec/unit/braintree/successful_result_spec.rb
206
- - spec/unit/braintree/payment_method_spec.rb
207
- - spec/unit/braintree/modification_spec.rb
208
- - spec/unit/braintree/errors_spec.rb
209
- - spec/unit/braintree/paypal_account_spec.rb
210
- - spec/unit/braintree/signature_service_spec.rb
211
- - spec/unit/braintree/base_module_spec.rb
212
- - spec/unit/braintree/apple_pay_card_spec.rb
213
- - spec/unit/braintree/subscription_spec.rb
214
- - spec/unit/braintree/us_bank_account_spec.rb
215
- - spec/unit/braintree/transaction_spec.rb
216
- - spec/unit/braintree/xml_spec.rb
217
- - spec/unit/braintree/three_d_secure_info_spec.rb
218
- - spec/unit/braintree/risk_data_spec.rb
219
- - spec/unit/braintree/address_spec.rb
220
- - spec/unit/braintree/validation_error_collection_spec.rb
169
+ - spec/unit/braintree/transaction/credit_card_details_spec.rb
170
+ - spec/unit/braintree/error_result_spec.rb
171
+ - spec/unit/braintree/unknown_payment_method_spec.rb
221
172
  - spec/unit/braintree/credit_card_spec.rb
222
- - spec/unit/braintree/dispute_spec.rb
223
173
  - spec/unit/braintree/disbursement_spec.rb
174
+ - spec/unit/braintree/credentials_parser_spec.rb
175
+ - spec/unit/braintree/subscription_spec.rb
176
+ - spec/unit/braintree/successful_result_spec.rb
177
+ - spec/unit/braintree/merchant_account_spec.rb
178
+ - spec/unit/braintree/sha256_digest_spec.rb
224
179
  - spec/unit/braintree/transaction_search_spec.rb
180
+ - spec/unit/braintree/util_spec.rb
225
181
  - spec/unit/braintree/validation_error_spec.rb
182
+ - spec/unit/braintree/transaction_spec.rb
183
+ - spec/unit/braintree/resource_collection_spec.rb
184
+ - spec/unit/braintree/paypal_account_spec.rb
185
+ - spec/unit/braintree/address_spec.rb
186
+ - spec/unit/braintree/webhook_notification_spec.rb
187
+ - spec/unit/braintree/transparent_redirect_spec.rb
188
+ - spec/unit/braintree/configuration_spec.rb
226
189
  - spec/unit/braintree/credit_card_verification_spec.rb
227
- - spec/unit/braintree/error_result_spec.rb
228
190
  - spec/unit/braintree/client_token_spec.rb
229
- - spec/unit/braintree/subscription_search_spec.rb
230
- - spec/unit/braintree/transparent_redirect_spec.rb
231
- - spec/unit/braintree/resource_collection_spec.rb
232
- - spec/unit/braintree/util_spec.rb
191
+ - spec/unit/braintree/apple_pay_card_spec.rb
192
+ - spec/unit/braintree/risk_data_spec.rb
233
193
  - spec/unit/braintree/customer_spec.rb
194
+ - spec/unit/braintree/xml_spec.rb
195
+ - spec/unit/braintree/validation_error_collection_spec.rb
196
+ - spec/unit/braintree/payment_method_spec.rb
197
+ - spec/unit/braintree/us_bank_account_spec.rb
198
+ - spec/unit/braintree/subscription_search_spec.rb
199
+ - spec/unit/braintree/three_d_secure_info_spec.rb
200
+ - spec/unit/braintree/digest_spec.rb
201
+ - spec/unit/braintree/errors_spec.rb
202
+ - spec/unit/braintree/dispute_spec.rb
234
203
  - spec/unit/braintree/xml/parser_spec.rb
235
204
  - spec/unit/braintree/xml/libxml_spec.rb
236
205
  - spec/unit/braintree/xml/rexml_spec.rb
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
206
+ - spec/unit/braintree_spec.rb
207
+ - spec/unit/spec_helper.rb
208
+ - spec/hacks/tcp_socket.rb
242
209
  - spec/oauth_test_helper.rb
210
+ - spec/integration/braintree/http_spec.rb
211
+ - spec/integration/braintree/credit_card_verification_search_spec.rb
212
+ - spec/integration/braintree/payment_method_nonce_spec.rb
213
+ - spec/integration/braintree/test/transaction_amounts_spec.rb
214
+ - spec/integration/braintree/client_api/client_token_spec.rb
215
+ - spec/integration/braintree/client_api/spec_helper.rb
216
+ - spec/integration/braintree/test_transaction_spec.rb
217
+ - spec/integration/braintree/merchant_spec.rb
218
+ - spec/integration/braintree/add_on_spec.rb
219
+ - spec/integration/braintree/credit_card_spec.rb
220
+ - spec/integration/braintree/disbursement_spec.rb
221
+ - spec/integration/braintree/subscription_spec.rb
222
+ - spec/integration/braintree/merchant_account_spec.rb
223
+ - spec/integration/braintree/advanced_search_spec.rb
224
+ - spec/integration/braintree/transaction_search_spec.rb
225
+ - spec/integration/braintree/transaction_spec.rb
226
+ - spec/integration/braintree/plan_spec.rb
227
+ - spec/integration/braintree/paypal_account_spec.rb
228
+ - spec/integration/braintree/discount_spec.rb
229
+ - spec/integration/braintree/address_spec.rb
230
+ - spec/integration/braintree/transparent_redirect_spec.rb
231
+ - spec/integration/braintree/credit_card_verification_spec.rb
232
+ - spec/integration/braintree/coinbase_spec.rb
233
+ - spec/integration/braintree/customer_spec.rb
234
+ - spec/integration/braintree/payment_method_spec.rb
235
+ - spec/integration/braintree/ideal_payment_spec.rb
236
+ - spec/integration/braintree/us_bank_account_spec.rb
237
+ - spec/integration/braintree/settlement_batch_summary_spec.rb
238
+ - spec/integration/braintree/oauth_spec.rb
239
+ - spec/integration/braintree/error_codes_spec.rb
240
+ - spec/integration/braintree/customer_search_spec.rb
241
+ - spec/integration/spec_helper.rb
242
+ - spec/spec_helper.rb
243
+ - spec/spec.opts
244
+ - spec/ssl/geotrust_global.crt
245
+ - spec/ssl/privateKey.key
246
+ - spec/ssl/certificate.crt
243
247
  - braintree.gemspec
244
248
  homepage: http://www.braintreepayments.com/
245
249
  licenses: