braintree 2.80.1 → 2.81.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +7 -0
  2. data/lib/braintree.rb +4 -1
  3. data/lib/braintree/account_updater_daily_report.rb +1 -1
  4. data/lib/braintree/ach_mandate.rb +2 -1
  5. data/lib/braintree/address.rb +16 -3
  6. data/lib/braintree/amex_express_checkout_card.rb +14 -2
  7. data/lib/braintree/android_pay_card.rb +16 -3
  8. data/lib/braintree/apple_pay_card.rb +15 -3
  9. data/lib/braintree/bin_data.rb +9 -2
  10. data/lib/braintree/coinbase_account.rb +10 -1
  11. data/lib/braintree/connected_merchant_paypal_status_changed.rb +3 -1
  12. data/lib/braintree/connected_merchant_status_transitioned.rb +3 -1
  13. data/lib/braintree/credentials_parser.rb +5 -1
  14. data/lib/braintree/credit_card.rb +25 -10
  15. data/lib/braintree/credit_card_verification.rb +32 -14
  16. data/lib/braintree/customer.rb +24 -11
  17. data/lib/braintree/descriptor.rb +3 -1
  18. data/lib/braintree/disbursement.rb +9 -1
  19. data/lib/braintree/dispute.rb +1 -6
  20. data/lib/braintree/dispute/transaction_details.rb +2 -1
  21. data/lib/braintree/document_upload.rb +6 -7
  22. data/lib/braintree/error_codes.rb +30 -0
  23. data/lib/braintree/error_result.rb +8 -1
  24. data/lib/braintree/europe_bank_account.rb +3 -1
  25. data/lib/braintree/facilitated_details.rb +3 -1
  26. data/lib/braintree/facilitator_details.rb +2 -1
  27. data/lib/braintree/gateway.rb +4 -0
  28. data/lib/braintree/granted_payment_instrument_update.rb +5 -1
  29. data/lib/braintree/ideal_payment.rb +15 -2
  30. data/lib/braintree/masterpass_card.rb +26 -11
  31. data/lib/braintree/merchant.rb +8 -1
  32. data/lib/braintree/merchant_account.rb +8 -3
  33. data/lib/braintree/merchant_account/address_details.rb +4 -1
  34. data/lib/braintree/merchant_account/business_details.rb +4 -1
  35. data/lib/braintree/merchant_account/funding_details.rb +6 -1
  36. data/lib/braintree/merchant_account/individual_details.rb +7 -2
  37. data/lib/braintree/oauth_credentials.rb +4 -1
  38. data/lib/braintree/paginated_result.rb +3 -1
  39. data/lib/braintree/payment_method_nonce.rb +5 -1
  40. data/lib/braintree/paypal_account.rb +8 -1
  41. data/lib/braintree/plan.rb +4 -4
  42. data/lib/braintree/risk_data.rb +3 -1
  43. data/lib/braintree/settlement_batch_summary.rb +1 -0
  44. data/lib/braintree/subscription.rb +27 -17
  45. data/lib/braintree/subscription/status_details.rb +8 -1
  46. data/lib/braintree/successful_result.rb +19 -1
  47. data/lib/braintree/three_d_secure_info.rb +5 -1
  48. data/lib/braintree/transaction.rb +54 -48
  49. data/lib/braintree/transaction/address_details.rb +13 -4
  50. data/lib/braintree/transaction/amex_express_checkout_details.rb +9 -2
  51. data/lib/braintree/transaction/android_pay_details.rb +10 -3
  52. data/lib/braintree/transaction/apple_pay_details.rb +7 -2
  53. data/lib/braintree/transaction/coinbase_details.rb +4 -1
  54. data/lib/braintree/transaction/credit_card_details.rb +40 -6
  55. data/lib/braintree/transaction/customer_details.rb +8 -1
  56. data/lib/braintree/transaction/disbursement_details.rb +5 -1
  57. data/lib/braintree/transaction/ideal_payment_details.rb +5 -1
  58. data/lib/braintree/transaction/masterpass_card_details.rb +18 -4
  59. data/lib/braintree/transaction/paypal_details.rb +18 -4
  60. data/lib/braintree/transaction/status_details.rb +5 -1
  61. data/lib/braintree/transaction/subscription_details.rb +2 -1
  62. data/lib/braintree/transaction/us_bank_account_details.rb +8 -1
  63. data/lib/braintree/transaction/venmo_account_details.rb +5 -1
  64. data/lib/braintree/transaction/visa_checkout_card_details.rb +19 -4
  65. data/lib/braintree/transaction_gateway.rb +1 -0
  66. data/lib/braintree/transaction_line_item.rb +34 -0
  67. data/lib/braintree/transaction_line_item_gateway.rb +19 -0
  68. data/lib/braintree/unknown_payment_method.rb +2 -1
  69. data/lib/braintree/us_bank_account.rb +9 -1
  70. data/lib/braintree/util.rb +14 -0
  71. data/lib/braintree/validation_error.rb +3 -1
  72. data/lib/braintree/venmo_account.rb +10 -3
  73. data/lib/braintree/version.rb +2 -2
  74. data/lib/braintree/visa_checkout_card.rb +27 -11
  75. data/lib/braintree/webhook_notification.rb +9 -9
  76. data/spec/httpsd.pid +1 -0
  77. data/spec/integration/braintree/apple_pay_spec.rb +2 -31
  78. data/spec/integration/braintree/http_spec.rb +1 -1
  79. data/spec/integration/braintree/transaction_spec.rb +1142 -0
  80. metadata +205 -207
  81. data/README.rdoc +0 -102
metadata CHANGED
@@ -1,30 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: braintree
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.80.1
5
- prerelease:
4
+ version: 2.81.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Braintree
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2017-11-27 00:00:00.000000000 Z
11
+ date: 2018-01-04 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: builder
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: 2.0.0
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: 2.0.0
30
27
  description: Ruby library for integrating with the Braintree Gateway
@@ -33,273 +30,274 @@ executables: []
33
30
  extensions: []
34
31
  extra_rdoc_files: []
35
32
  files:
36
- - README.rdoc
37
33
  - LICENSE
38
- - lib/braintree/android_pay_card.rb
39
- - lib/braintree/util.rb
40
- - lib/braintree/successful_result.rb
41
- - lib/braintree/transaction/status_details.rb
42
- - lib/braintree/transaction/coinbase_details.rb
43
- - lib/braintree/transaction/customer_details.rb
44
- - lib/braintree/transaction/us_bank_account_details.rb
45
- - lib/braintree/transaction/credit_card_details.rb
46
- - lib/braintree/transaction/paypal_details.rb
47
- - lib/braintree/transaction/venmo_account_details.rb
48
- - lib/braintree/transaction/masterpass_card_details.rb
49
- - lib/braintree/transaction/address_details.rb
50
- - lib/braintree/transaction/ideal_payment_details.rb
51
- - lib/braintree/transaction/disbursement_details.rb
52
- - lib/braintree/transaction/apple_pay_details.rb
53
- - lib/braintree/transaction/amex_express_checkout_details.rb
54
- - lib/braintree/transaction/visa_checkout_card_details.rb
55
- - lib/braintree/transaction/subscription_details.rb
56
- - lib/braintree/transaction/android_pay_details.rb
57
- - lib/braintree/amex_express_checkout_card.rb
58
- - lib/braintree/modification.rb
59
- - lib/braintree/facilitator_details.rb
34
+ - braintree.gemspec
35
+ - lib/braintree.rb
60
36
  - lib/braintree/account_updater_daily_report.rb
61
- - lib/braintree/configuration.rb
62
- - lib/braintree/credit_card.rb
63
- - lib/braintree/errors.rb
64
- - lib/braintree/client_token_gateway.rb
37
+ - lib/braintree/ach_mandate.rb
38
+ - lib/braintree/add_on.rb
39
+ - lib/braintree/add_on_gateway.rb
40
+ - lib/braintree/address.rb
41
+ - lib/braintree/address/country_names.rb
65
42
  - lib/braintree/address_gateway.rb
66
- - lib/braintree/error_result.rb
67
- - lib/braintree/paginated_result.rb
68
- - lib/braintree/plan.rb
69
- - lib/braintree/webhook_notification_gateway.rb
70
- - lib/braintree/xml/parser.rb
71
- - lib/braintree/xml/generator.rb
72
- - lib/braintree/xml/rexml.rb
73
- - lib/braintree/xml/libxml.rb
74
- - lib/braintree/unknown_payment_method.rb
75
- - lib/braintree/payment_method.rb
43
+ - lib/braintree/advanced_search.rb
44
+ - lib/braintree/amex_express_checkout_card.rb
45
+ - lib/braintree/android_pay_card.rb
76
46
  - lib/braintree/apple_pay.rb
77
- - lib/braintree/payment_method_nonce.rb
78
- - lib/braintree/dispute.rb
79
- - lib/braintree/plan_gateway.rb
80
- - lib/braintree/discount_gateway.rb
81
- - lib/braintree/document_upload_gateway.rb
82
- - lib/braintree/merchant_account_gateway.rb
83
- - lib/braintree/oauth_credentials.rb
84
- - lib/braintree/risk_data.rb
85
- - lib/braintree/validation_error_collection.rb
86
- - lib/braintree/paypal_account_gateway.rb
87
- - lib/braintree/gateway.rb
88
- - lib/braintree/oauth_gateway.rb
89
- - lib/braintree/credentials_parser.rb
90
- - lib/braintree/add_on_gateway.rb
47
+ - lib/braintree/apple_pay_card.rb
48
+ - lib/braintree/apple_pay_gateway.rb
49
+ - lib/braintree/apple_pay_options.rb
50
+ - lib/braintree/authorization_adjustment.rb
51
+ - lib/braintree/base_module.rb
52
+ - lib/braintree/bin_data.rb
91
53
  - lib/braintree/client_token.rb
92
- - lib/braintree/sha256_digest.rb
93
- - lib/braintree/merchant_account/business_details.rb
94
- - lib/braintree/merchant_account/individual_details.rb
95
- - lib/braintree/merchant_account/address_details.rb
96
- - lib/braintree/merchant_account/funding_details.rb
97
- - lib/braintree/validation_error.rb
98
- - lib/braintree/customer_search.rb
99
- - lib/braintree/transparent_redirect_gateway.rb
100
- - lib/braintree/us_bank_account.rb
101
- - lib/braintree/merchant_gateway.rb
102
- - lib/braintree/test/credit_card.rb
103
- - lib/braintree/test/transaction_amounts.rb
104
- - lib/braintree/test/venmo_sdk.rb
105
- - lib/braintree/test/nonce.rb
106
- - lib/braintree/test/merchant_account.rb
107
- - lib/braintree/webhook_notification.rb
108
- - lib/braintree/http.rb
109
- - lib/braintree/subscription_search.rb
110
- - lib/braintree/digest.rb
54
+ - lib/braintree/client_token_gateway.rb
55
+ - lib/braintree/coinbase_account.rb
56
+ - lib/braintree/configuration.rb
111
57
  - lib/braintree/connected_merchant_paypal_status_changed.rb
112
- - lib/braintree/authorization_adjustment.rb
113
- - lib/braintree/descriptor.rb
114
- - lib/braintree/signature_service.rb
115
- - lib/braintree/payment_method_gateway.rb
116
- - lib/braintree/three_d_secure_info.rb
117
- - lib/braintree/webhook_testing.rb
58
+ - lib/braintree/connected_merchant_status_transitioned.rb
59
+ - lib/braintree/credentials_parser.rb
60
+ - lib/braintree/credit_card.rb
61
+ - lib/braintree/credit_card_gateway.rb
118
62
  - lib/braintree/credit_card_verification.rb
119
- - lib/braintree/xml.rb
120
- - lib/braintree/europe_bank_account_gateway.rb
121
- - lib/braintree/payment_method_nonce_gateway.rb
122
- - lib/braintree/subscription.rb
123
- - lib/braintree/transaction.rb
124
63
  - lib/braintree/credit_card_verification_gateway.rb
125
- - lib/braintree/dispute_gateway.rb
126
- - lib/braintree/address.rb
127
- - lib/braintree/connected_merchant_status_transitioned.rb
64
+ - lib/braintree/credit_card_verification_search.rb
128
65
  - lib/braintree/customer.rb
129
- - lib/braintree/dispute_search.rb
130
- - lib/braintree/facilitated_details.rb
131
- - lib/braintree/coinbase_account.rb
132
- - lib/braintree/resource_collection.rb
133
66
  - lib/braintree/customer_gateway.rb
134
- - lib/braintree/ideal_payment_gateway.rb
135
- - lib/braintree/add_on.rb
136
- - lib/braintree/venmo_account.rb
137
- - lib/braintree/discount.rb
138
- - lib/braintree/advanced_search.rb
139
- - lib/braintree/transaction_gateway.rb
140
- - lib/braintree/us_bank_account_gateway.rb
141
- - lib/braintree/settlement_batch_summary.rb
142
- - lib/braintree/testing_gateway.rb
143
- - lib/braintree/credit_card_gateway.rb
144
- - lib/braintree/exceptions.rb
145
- - lib/braintree/webhook_testing_gateway.rb
146
- - lib/braintree/transaction_search.rb
67
+ - lib/braintree/customer_search.rb
68
+ - lib/braintree/descriptor.rb
69
+ - lib/braintree/digest.rb
147
70
  - lib/braintree/disbursement.rb
148
- - lib/braintree/dispute/transaction_details.rb
71
+ - lib/braintree/discount.rb
72
+ - lib/braintree/discount_gateway.rb
73
+ - lib/braintree/dispute.rb
149
74
  - lib/braintree/dispute/evidence.rb
150
75
  - lib/braintree/dispute/history_event.rb
151
76
  - lib/braintree/dispute/transaction.rb
152
- - lib/braintree/address/country_names.rb
153
- - lib/braintree/subscription/status_details.rb
154
- - lib/braintree/test_transaction.rb
155
- - lib/braintree/base_module.rb
156
- - lib/braintree/settlement_batch.rb
157
- - lib/braintree/bin_data.rb
77
+ - lib/braintree/dispute/transaction_details.rb
78
+ - lib/braintree/dispute_gateway.rb
79
+ - lib/braintree/dispute_search.rb
158
80
  - lib/braintree/document_upload.rb
159
- - lib/braintree/credit_card_verification_search.rb
160
- - lib/braintree/version.rb
161
- - lib/braintree/subscription_gateway.rb
162
- - lib/braintree/settlement_batch_summary_gateway.rb
163
- - lib/braintree/apple_pay_options.rb
164
- - lib/braintree/apple_pay_card.rb
165
- - lib/braintree/merchant_account.rb
81
+ - lib/braintree/document_upload_gateway.rb
166
82
  - lib/braintree/error_codes.rb
167
- - lib/braintree/apple_pay_gateway.rb
83
+ - lib/braintree/error_result.rb
84
+ - lib/braintree/errors.rb
168
85
  - lib/braintree/europe_bank_account.rb
169
- - lib/braintree/visa_checkout_card.rb
170
- - lib/braintree/masterpass_card.rb
171
- - lib/braintree/ideal_payment.rb
172
- - lib/braintree/transparent_redirect.rb
86
+ - lib/braintree/europe_bank_account_gateway.rb
87
+ - lib/braintree/exceptions.rb
88
+ - lib/braintree/facilitated_details.rb
89
+ - lib/braintree/facilitator_details.rb
90
+ - lib/braintree/gateway.rb
173
91
  - lib/braintree/granted_payment_instrument_update.rb
92
+ - lib/braintree/http.rb
93
+ - lib/braintree/ideal_payment.rb
94
+ - lib/braintree/ideal_payment_gateway.rb
95
+ - lib/braintree/masterpass_card.rb
174
96
  - lib/braintree/merchant.rb
175
- - lib/braintree/paypal_account.rb
176
- - lib/braintree/payment_instrument_type.rb
177
- - lib/braintree/ach_mandate.rb
97
+ - lib/braintree/merchant_account.rb
98
+ - lib/braintree/merchant_account/address_details.rb
99
+ - lib/braintree/merchant_account/business_details.rb
100
+ - lib/braintree/merchant_account/funding_details.rb
101
+ - lib/braintree/merchant_account/individual_details.rb
102
+ - lib/braintree/merchant_account_gateway.rb
103
+ - lib/braintree/merchant_gateway.rb
104
+ - lib/braintree/modification.rb
105
+ - lib/braintree/oauth_credentials.rb
106
+ - lib/braintree/oauth_gateway.rb
178
107
  - lib/braintree/paginated_collection.rb
179
- - lib/braintree.rb
108
+ - lib/braintree/paginated_result.rb
109
+ - lib/braintree/payment_instrument_type.rb
110
+ - lib/braintree/payment_method.rb
111
+ - lib/braintree/payment_method_gateway.rb
112
+ - lib/braintree/payment_method_nonce.rb
113
+ - lib/braintree/payment_method_nonce_gateway.rb
114
+ - lib/braintree/paypal_account.rb
115
+ - lib/braintree/paypal_account_gateway.rb
116
+ - lib/braintree/plan.rb
117
+ - lib/braintree/plan_gateway.rb
118
+ - lib/braintree/resource_collection.rb
119
+ - lib/braintree/risk_data.rb
120
+ - lib/braintree/settlement_batch.rb
121
+ - lib/braintree/settlement_batch_summary.rb
122
+ - lib/braintree/settlement_batch_summary_gateway.rb
123
+ - lib/braintree/sha256_digest.rb
124
+ - lib/braintree/signature_service.rb
125
+ - lib/braintree/subscription.rb
126
+ - lib/braintree/subscription/status_details.rb
127
+ - lib/braintree/subscription_gateway.rb
128
+ - lib/braintree/subscription_search.rb
129
+ - lib/braintree/successful_result.rb
130
+ - lib/braintree/test/credit_card.rb
131
+ - lib/braintree/test/merchant_account.rb
132
+ - lib/braintree/test/nonce.rb
133
+ - lib/braintree/test/transaction_amounts.rb
134
+ - lib/braintree/test/venmo_sdk.rb
135
+ - lib/braintree/test_transaction.rb
136
+ - lib/braintree/testing_gateway.rb
137
+ - lib/braintree/three_d_secure_info.rb
138
+ - lib/braintree/transaction.rb
139
+ - lib/braintree/transaction/address_details.rb
140
+ - lib/braintree/transaction/amex_express_checkout_details.rb
141
+ - lib/braintree/transaction/android_pay_details.rb
142
+ - lib/braintree/transaction/apple_pay_details.rb
143
+ - lib/braintree/transaction/coinbase_details.rb
144
+ - lib/braintree/transaction/credit_card_details.rb
145
+ - lib/braintree/transaction/customer_details.rb
146
+ - lib/braintree/transaction/disbursement_details.rb
147
+ - lib/braintree/transaction/ideal_payment_details.rb
148
+ - lib/braintree/transaction/masterpass_card_details.rb
149
+ - lib/braintree/transaction/paypal_details.rb
150
+ - lib/braintree/transaction/status_details.rb
151
+ - lib/braintree/transaction/subscription_details.rb
152
+ - lib/braintree/transaction/us_bank_account_details.rb
153
+ - lib/braintree/transaction/venmo_account_details.rb
154
+ - lib/braintree/transaction/visa_checkout_card_details.rb
155
+ - lib/braintree/transaction_gateway.rb
156
+ - lib/braintree/transaction_line_item.rb
157
+ - lib/braintree/transaction_line_item_gateway.rb
158
+ - lib/braintree/transaction_search.rb
159
+ - lib/braintree/transparent_redirect.rb
160
+ - lib/braintree/transparent_redirect_gateway.rb
161
+ - lib/braintree/unknown_payment_method.rb
162
+ - lib/braintree/us_bank_account.rb
163
+ - lib/braintree/us_bank_account_gateway.rb
164
+ - lib/braintree/util.rb
165
+ - lib/braintree/validation_error.rb
166
+ - lib/braintree/validation_error_collection.rb
167
+ - lib/braintree/venmo_account.rb
168
+ - lib/braintree/version.rb
169
+ - lib/braintree/visa_checkout_card.rb
170
+ - lib/braintree/webhook_notification.rb
171
+ - lib/braintree/webhook_notification_gateway.rb
172
+ - lib/braintree/webhook_testing.rb
173
+ - lib/braintree/webhook_testing_gateway.rb
174
+ - lib/braintree/xml.rb
175
+ - lib/braintree/xml/generator.rb
176
+ - lib/braintree/xml/libxml.rb
177
+ - lib/braintree/xml/parser.rb
178
+ - lib/braintree/xml/rexml.rb
180
179
  - lib/ssl/api_braintreegateway_com.ca.crt
181
180
  - lib/ssl/securetrust_ca.crt
182
- - spec/script/httpsd.rb
181
+ - spec/fixtures/files/bt_logo.png
182
+ - spec/fixtures/files/gif_extension_bt_logo.gif
183
+ - spec/fixtures/files/malformed_pdf.pdf
183
184
  - spec/hacks/tcp_socket.rb
184
- - spec/oauth_test_helper.rb
185
- - spec/integration/braintree/masterpass_card_spec.rb
185
+ - spec/httpsd.pid
186
+ - spec/integration/braintree/add_on_spec.rb
187
+ - spec/integration/braintree/address_spec.rb
188
+ - spec/integration/braintree/advanced_search_spec.rb
189
+ - spec/integration/braintree/apple_pay_spec.rb
186
190
  - spec/integration/braintree/client_api/client_token_spec.rb
187
191
  - spec/integration/braintree/client_api/spec_helper.rb
188
- - spec/integration/braintree/test_transaction_spec.rb
189
- - spec/integration/braintree/disbursement_spec.rb
190
- - spec/integration/braintree/ideal_payment_spec.rb
191
- - spec/integration/braintree/merchant_spec.rb
192
- - spec/integration/braintree/oauth_spec.rb
193
- - spec/integration/braintree/visa_checkout_card_spec.rb
194
- - spec/integration/braintree/customer_spec.rb
195
192
  - spec/integration/braintree/coinbase_spec.rb
196
- - spec/integration/braintree/transparent_redirect_spec.rb
197
- - spec/integration/braintree/payment_method_nonce_spec.rb
198
- - spec/integration/braintree/add_on_spec.rb
199
- - spec/integration/braintree/advanced_search_spec.rb
193
+ - spec/integration/braintree/credit_card_spec.rb
194
+ - spec/integration/braintree/credit_card_verification_search_spec.rb
200
195
  - spec/integration/braintree/credit_card_verification_spec.rb
201
- - spec/integration/braintree/test/transaction_amounts_spec.rb
202
- - spec/integration/braintree/transaction_spec.rb
203
196
  - spec/integration/braintree/customer_search_spec.rb
204
- - spec/integration/braintree/credit_card_verification_search_spec.rb
205
- - spec/integration/braintree/dispute_search_spec.rb
206
- - spec/integration/braintree/error_codes_spec.rb
207
- - spec/integration/braintree/paypal_account_spec.rb
208
- - spec/integration/braintree/credit_card_spec.rb
209
- - spec/integration/braintree/subscription_spec.rb
197
+ - spec/integration/braintree/customer_spec.rb
198
+ - spec/integration/braintree/disbursement_spec.rb
210
199
  - spec/integration/braintree/discount_spec.rb
200
+ - spec/integration/braintree/dispute_search_spec.rb
201
+ - spec/integration/braintree/dispute_spec.rb
211
202
  - spec/integration/braintree/document_upload_spec.rb
203
+ - spec/integration/braintree/error_codes_spec.rb
204
+ - spec/integration/braintree/http_spec.rb
205
+ - spec/integration/braintree/ideal_payment_spec.rb
206
+ - spec/integration/braintree/masterpass_card_spec.rb
212
207
  - spec/integration/braintree/merchant_account_spec.rb
213
- - spec/integration/braintree/plan_spec.rb
214
- - spec/integration/braintree/apple_pay_spec.rb
215
- - spec/integration/braintree/address_spec.rb
208
+ - spec/integration/braintree/merchant_spec.rb
209
+ - spec/integration/braintree/oauth_spec.rb
210
+ - spec/integration/braintree/payment_method_nonce_spec.rb
216
211
  - spec/integration/braintree/payment_method_spec.rb
217
- - spec/integration/braintree/http_spec.rb
212
+ - spec/integration/braintree/paypal_account_spec.rb
213
+ - spec/integration/braintree/plan_spec.rb
218
214
  - spec/integration/braintree/settlement_batch_summary_spec.rb
219
- - spec/integration/braintree/dispute_spec.rb
220
- - spec/integration/braintree/us_bank_account_spec.rb
215
+ - spec/integration/braintree/subscription_spec.rb
216
+ - spec/integration/braintree/test/transaction_amounts_spec.rb
217
+ - spec/integration/braintree/test_transaction_spec.rb
221
218
  - spec/integration/braintree/transaction_search_spec.rb
219
+ - spec/integration/braintree/transaction_spec.rb
220
+ - spec/integration/braintree/transparent_redirect_spec.rb
221
+ - spec/integration/braintree/us_bank_account_spec.rb
222
+ - spec/integration/braintree/visa_checkout_card_spec.rb
222
223
  - spec/integration/spec_helper.rb
224
+ - spec/oauth_test_helper.rb
225
+ - spec/script/httpsd.rb
226
+ - spec/spec.opts
227
+ - spec/spec_helper.rb
223
228
  - spec/ssl/certificate.crt
224
229
  - spec/ssl/geotrust_global.crt
225
230
  - spec/ssl/privateKey.key
226
- - spec/spec.opts
227
- - spec/fixtures/files/malformed_pdf.pdf
228
- - spec/fixtures/files/gif_extension_bt_logo.gif
229
- - spec/fixtures/files/bt_logo.png
230
- - spec/unit/braintree_spec.rb
231
- - spec/unit/braintree/transaction/deposit_details_spec.rb
232
- - spec/unit/braintree/transaction/customer_details_spec.rb
233
- - spec/unit/braintree/transaction/credit_card_details_spec.rb
231
+ - spec/unit/braintree/address_spec.rb
234
232
  - spec/unit/braintree/apple_pay_card_spec.rb
235
- - spec/unit/braintree/disbursement_spec.rb
236
- - spec/unit/braintree/xml/rexml_spec.rb
237
- - spec/unit/braintree/xml/parser_spec.rb
238
- - spec/unit/braintree/xml/libxml_spec.rb
239
- - spec/unit/braintree/sha256_digest_spec.rb
240
233
  - spec/unit/braintree/base_module_spec.rb
241
234
  - spec/unit/braintree/client_token_spec.rb
242
- - spec/unit/braintree/three_d_secure_info_spec.rb
243
- - spec/unit/braintree/validation_error_spec.rb
244
- - spec/unit/braintree/customer_spec.rb
245
- - spec/unit/braintree/util_spec.rb
246
- - spec/unit/braintree/risk_data_spec.rb
247
- - spec/unit/braintree/subscription_search_spec.rb
248
- - spec/unit/braintree/transparent_redirect_spec.rb
249
- - spec/unit/braintree/modification_spec.rb
250
- - spec/unit/braintree/credit_card_verification_spec.rb
251
- - spec/unit/braintree/unknown_payment_method_spec.rb
235
+ - spec/unit/braintree/configuration_spec.rb
252
236
  - spec/unit/braintree/credentials_parser_spec.rb
253
- - spec/unit/braintree/transaction_spec.rb
254
- - spec/unit/braintree/validation_error_collection_spec.rb
255
- - spec/unit/braintree/resource_collection_spec.rb
237
+ - spec/unit/braintree/credit_card_spec.rb
256
238
  - spec/unit/braintree/credit_card_verification_search_spec.rb
257
- - spec/unit/braintree/webhook_notification_spec.rb
258
- - spec/unit/braintree/errors_spec.rb
259
- - spec/unit/braintree/error_result_spec.rb
239
+ - spec/unit/braintree/credit_card_verification_spec.rb
240
+ - spec/unit/braintree/customer_spec.rb
241
+ - spec/unit/braintree/digest_spec.rb
242
+ - spec/unit/braintree/disbursement_spec.rb
260
243
  - spec/unit/braintree/dispute_search_spec.rb
261
- - spec/unit/braintree/xml_spec.rb
262
- - spec/unit/braintree/paypal_account_spec.rb
263
- - spec/unit/braintree/credit_card_spec.rb
264
- - spec/unit/braintree/signature_service_spec.rb
265
- - spec/unit/braintree/subscription_spec.rb
244
+ - spec/unit/braintree/dispute_spec.rb
266
245
  - spec/unit/braintree/document_upload_spec.rb
246
+ - spec/unit/braintree/error_result_spec.rb
247
+ - spec/unit/braintree/errors_spec.rb
248
+ - spec/unit/braintree/http_spec.rb
267
249
  - spec/unit/braintree/merchant_account_spec.rb
268
- - spec/unit/braintree/address_spec.rb
269
- - spec/unit/braintree/digest_spec.rb
270
- - spec/unit/braintree/configuration_spec.rb
250
+ - spec/unit/braintree/modification_spec.rb
271
251
  - spec/unit/braintree/payment_method_spec.rb
272
- - spec/unit/braintree/http_spec.rb
273
- - spec/unit/braintree/dispute_spec.rb
274
- - spec/unit/braintree/us_bank_account_spec.rb
252
+ - spec/unit/braintree/paypal_account_spec.rb
253
+ - spec/unit/braintree/resource_collection_spec.rb
254
+ - spec/unit/braintree/risk_data_spec.rb
255
+ - spec/unit/braintree/sha256_digest_spec.rb
256
+ - spec/unit/braintree/signature_service_spec.rb
257
+ - spec/unit/braintree/subscription_search_spec.rb
258
+ - spec/unit/braintree/subscription_spec.rb
275
259
  - spec/unit/braintree/successful_result_spec.rb
260
+ - spec/unit/braintree/three_d_secure_info_spec.rb
261
+ - spec/unit/braintree/transaction/credit_card_details_spec.rb
262
+ - spec/unit/braintree/transaction/customer_details_spec.rb
263
+ - spec/unit/braintree/transaction/deposit_details_spec.rb
276
264
  - spec/unit/braintree/transaction_search_spec.rb
265
+ - spec/unit/braintree/transaction_spec.rb
266
+ - spec/unit/braintree/transparent_redirect_spec.rb
267
+ - spec/unit/braintree/unknown_payment_method_spec.rb
268
+ - spec/unit/braintree/us_bank_account_spec.rb
269
+ - spec/unit/braintree/util_spec.rb
270
+ - spec/unit/braintree/validation_error_collection_spec.rb
271
+ - spec/unit/braintree/validation_error_spec.rb
272
+ - spec/unit/braintree/webhook_notification_spec.rb
273
+ - spec/unit/braintree/xml/libxml_spec.rb
274
+ - spec/unit/braintree/xml/parser_spec.rb
275
+ - spec/unit/braintree/xml/rexml_spec.rb
276
+ - spec/unit/braintree/xml_spec.rb
277
+ - spec/unit/braintree_spec.rb
277
278
  - spec/unit/spec_helper.rb
278
- - spec/spec_helper.rb
279
- - braintree.gemspec
280
279
  homepage: http://www.braintreepayments.com/
281
280
  licenses:
282
281
  - MIT
282
+ metadata: {}
283
283
  post_install_message:
284
284
  rdoc_options: []
285
285
  require_paths:
286
286
  - lib
287
287
  required_ruby_version: !ruby/object:Gem::Requirement
288
- none: false
289
288
  requirements:
290
- - - ! '>='
289
+ - - ">="
291
290
  - !ruby/object:Gem::Version
292
291
  version: '0'
293
292
  required_rubygems_version: !ruby/object:Gem::Requirement
294
- none: false
295
293
  requirements:
296
- - - ! '>='
294
+ - - ">="
297
295
  - !ruby/object:Gem::Version
298
296
  version: '0'
299
297
  requirements: []
300
298
  rubyforge_project: braintree
301
- rubygems_version: 1.8.23
299
+ rubygems_version: 2.4.8
302
300
  signing_key:
303
- specification_version: 3
301
+ specification_version: 4
304
302
  summary: Braintree Gateway Ruby Client Library
305
303
  test_files: []