braintree 2.57.0 → 2.58.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/braintree.rb +1 -0
- data/lib/braintree/account_updater_daily_report.rb +20 -0
- data/lib/braintree/configuration.rb +1 -1
- data/lib/braintree/customer.rb +6 -6
- data/lib/braintree/version.rb +1 -1
- data/lib/braintree/webhook_notification.rb +4 -1
- data/lib/braintree/webhook_testing_gateway.rb +12 -0
- data/spec/httpsd.pid +1 -1
- data/spec/unit/braintree/webhook_notification_spec.rb +15 -0
- metadata +156 -155
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cee6181a145c73537ac1316be7ca52a97e29821c
|
4
|
+
data.tar.gz: 7330bddf83bcc750dcb5d371ff60dca429030771
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4afe30e665b4cd62cfffb91d121276873bce2a50d6b5bb9d5d2521fd3b6cd2fd4b8b47454355e0b5245e442e3fa84037fdb38fb51cdf66420e8c22d6ca0b29bc
|
7
|
+
data.tar.gz: 5571747db9d93437374aa7286a84252ebda520976d0c7e3f306de0c42e00a0760d2f0f203ece10bd792cba2594688ebc73b6524434e9f08625ddf67a343809f9
|
data/lib/braintree.rb
CHANGED
@@ -0,0 +1,20 @@
|
|
1
|
+
module Braintree
|
2
|
+
class AccountUpdaterDailyReport # :nodoc:
|
3
|
+
include BaseModule
|
4
|
+
|
5
|
+
attr_reader :report_url
|
6
|
+
attr_reader :report_date
|
7
|
+
|
8
|
+
class << self
|
9
|
+
protected :new
|
10
|
+
def _new(*args) # :nodoc:
|
11
|
+
self.new *args
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def initialize(attributes) # :nodoc:
|
16
|
+
set_instance_variables_from_hash(attributes)
|
17
|
+
@report_date = Date.parse(report_date)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -39,7 +39,7 @@ module Braintree
|
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
42
|
-
expectant_reader *
|
42
|
+
expectant_reader *READABLE_ATTRIBUTES
|
43
43
|
|
44
44
|
# Sets the Braintree environment to use. Valid values are <tt>:sandbox</tt> and <tt>:production</tt>
|
45
45
|
def self.environment=(env)
|
data/lib/braintree/customer.rb
CHANGED
@@ -126,12 +126,12 @@ module Braintree
|
|
126
126
|
# Returns the customer's payment methods
|
127
127
|
def payment_methods
|
128
128
|
@credit_cards +
|
129
|
-
@paypal_accounts
|
130
|
-
@apple_pay_cards
|
131
|
-
@coinbase_accounts
|
132
|
-
@android_pay_cards
|
133
|
-
@amex_express_checkout_cards
|
134
|
-
@venmo_accounts
|
129
|
+
@paypal_accounts +
|
130
|
+
@apple_pay_cards +
|
131
|
+
@coinbase_accounts +
|
132
|
+
@android_pay_cards +
|
133
|
+
@amex_express_checkout_cards +
|
134
|
+
@venmo_accounts
|
135
135
|
end
|
136
136
|
|
137
137
|
def inspect # :nodoc:
|
data/lib/braintree/version.rb
CHANGED
@@ -28,9 +28,11 @@ module Braintree
|
|
28
28
|
PartnerMerchantConnected = "partner_merchant_connected"
|
29
29
|
PartnerMerchantDisconnected = "partner_merchant_disconnected"
|
30
30
|
PartnerMerchantDeclined = "partner_merchant_declined"
|
31
|
+
|
32
|
+
AccountUpdaterDailyReport = "account_updater_daily_report"
|
31
33
|
end
|
32
34
|
|
33
|
-
attr_reader :subscription, :kind, :timestamp, :transaction, :partner_merchant, :disbursement, :dispute
|
35
|
+
attr_reader :subscription, :kind, :timestamp, :transaction, :partner_merchant, :disbursement, :dispute, :account_updater_daily_report
|
34
36
|
|
35
37
|
def self.parse(signature, payload)
|
36
38
|
Configuration.gateway.webhook_notification.parse(signature, payload)
|
@@ -50,6 +52,7 @@ module Braintree
|
|
50
52
|
@transaction = Transaction._new(gateway, @subject[:transaction]) if @subject.has_key?(:transaction)
|
51
53
|
@disbursement = Disbursement._new(gateway, @subject[:disbursement]) if @subject.has_key?(:disbursement)
|
52
54
|
@dispute = Dispute._new(@subject[:dispute]) if @subject.has_key?(:dispute)
|
55
|
+
@account_updater_daily_report = AccountUpdaterDailyReport._new(@subject[:account_updater_daily_report]) if @subject.has_key?(:account_updater_daily_report)
|
53
56
|
end
|
54
57
|
|
55
58
|
def merchant_account
|
@@ -53,6 +53,8 @@ module Braintree
|
|
53
53
|
_disbursement_sample_xml(id)
|
54
54
|
when Braintree::WebhookNotification::Kind::SubscriptionChargedSuccessfully
|
55
55
|
_subscription_charged_successfully(id)
|
56
|
+
when Braintree::WebhookNotification::Kind::AccountUpdaterDailyReport
|
57
|
+
_account_updater_daily_report_sample_xml(id)
|
56
58
|
else
|
57
59
|
_subscription_sample_xml(id)
|
58
60
|
end
|
@@ -299,5 +301,15 @@ module Braintree
|
|
299
301
|
</disbursement>
|
300
302
|
XML
|
301
303
|
end
|
304
|
+
|
305
|
+
def _account_updater_daily_report_sample_xml(id)
|
306
|
+
|
307
|
+
<<-XML
|
308
|
+
<account-updater-daily-report>
|
309
|
+
<report-date type="date">2016-01-14</report-date>
|
310
|
+
<report-url>link-to-csv-report</report-url>
|
311
|
+
</account-updater-daily-report>
|
312
|
+
XML
|
313
|
+
end
|
302
314
|
end
|
303
315
|
end
|
data/spec/httpsd.pid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
7522
|
@@ -228,6 +228,21 @@ describe Braintree::WebhookNotification do
|
|
228
228
|
end
|
229
229
|
end
|
230
230
|
|
231
|
+
context "account_updater_daily_report" do
|
232
|
+
it "builds a sample notification for an account_updater_daily_report webhook" do
|
233
|
+
sample_notification = Braintree::WebhookTesting.sample_notification(
|
234
|
+
Braintree::WebhookNotification::Kind::AccountUpdaterDailyReport,
|
235
|
+
"my_id"
|
236
|
+
)
|
237
|
+
|
238
|
+
notification = Braintree::WebhookNotification.parse(sample_notification[:bt_signature], sample_notification[:bt_payload])
|
239
|
+
|
240
|
+
notification.kind.should == Braintree::WebhookNotification::Kind::AccountUpdaterDailyReport
|
241
|
+
notification.account_updater_daily_report.report_url.should == "link-to-csv-report"
|
242
|
+
notification.account_updater_daily_report.report_date.should == Date.parse("2016-01-14")
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
231
246
|
describe "parse" do
|
232
247
|
it "raises InvalidSignature error when the signature is completely invalid" do
|
233
248
|
sample_notification = Braintree::WebhookTesting.sample_notification(
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: braintree
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.58.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Braintree
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: builder
|
@@ -33,203 +33,204 @@ files:
|
|
33
33
|
- README.rdoc
|
34
34
|
- LICENSE
|
35
35
|
- lib/braintree.rb
|
36
|
-
- lib/braintree/
|
37
|
-
- lib/braintree/
|
38
|
-
- lib/braintree/
|
39
|
-
- lib/braintree/
|
40
|
-
- lib/braintree/
|
36
|
+
- lib/braintree/configuration.rb
|
37
|
+
- lib/braintree/credit_card_verification_search.rb
|
38
|
+
- lib/braintree/discount_gateway.rb
|
39
|
+
- lib/braintree/add_on_gateway.rb
|
40
|
+
- lib/braintree/descriptor.rb
|
41
41
|
- lib/braintree/europe_bank_account.rb
|
42
|
-
- lib/braintree/
|
43
|
-
- lib/braintree/
|
44
|
-
- lib/braintree/
|
42
|
+
- lib/braintree/paypal_account_gateway.rb
|
43
|
+
- lib/braintree/subscription_search.rb
|
44
|
+
- lib/braintree/apple_pay_card.rb
|
45
|
+
- lib/braintree/merchant_account_gateway.rb
|
45
46
|
- lib/braintree/facilitator_details.rb
|
47
|
+
- lib/braintree/subscription/status_details.rb
|
46
48
|
- lib/braintree/util.rb
|
47
|
-
- lib/braintree/
|
48
|
-
- lib/braintree/
|
49
|
-
- lib/braintree/
|
50
|
-
- lib/braintree/
|
51
|
-
- lib/braintree/
|
49
|
+
- lib/braintree/add_on.rb
|
50
|
+
- lib/braintree/validation_error.rb
|
51
|
+
- lib/braintree/errors.rb
|
52
|
+
- lib/braintree/oauth_gateway.rb
|
53
|
+
- lib/braintree/error_codes.rb
|
54
|
+
- lib/braintree/signature_service.rb
|
55
|
+
- lib/braintree/test_transaction.rb
|
56
|
+
- lib/braintree/venmo_account.rb
|
57
|
+
- lib/braintree/discount.rb
|
58
|
+
- lib/braintree/client_token_gateway.rb
|
52
59
|
- lib/braintree/merchant_account/business_details.rb
|
53
|
-
- lib/braintree/merchant_account/
|
60
|
+
- lib/braintree/merchant_account/address_details.rb
|
54
61
|
- lib/braintree/merchant_account/individual_details.rb
|
55
|
-
- lib/braintree/
|
56
|
-
- lib/braintree/
|
57
|
-
- lib/braintree/paypal_account_gateway.rb
|
58
|
-
- lib/braintree/add_on.rb
|
59
|
-
- lib/braintree/risk_data.rb
|
60
|
-
- lib/braintree/payment_method_nonce.rb
|
61
|
-
- lib/braintree/credit_card_verification_gateway.rb
|
62
|
-
- lib/braintree/webhook_notification_gateway.rb
|
62
|
+
- lib/braintree/merchant_account/funding_details.rb
|
63
|
+
- lib/braintree/account_updater_daily_report.rb
|
63
64
|
- lib/braintree/address.rb
|
64
|
-
- lib/braintree/subscription_search.rb
|
65
|
-
- lib/braintree/amex_express_checkout_card.rb
|
66
|
-
- lib/braintree/android_pay_card.rb
|
67
|
-
- lib/braintree/add_on_gateway.rb
|
68
|
-
- lib/braintree/http.rb
|
69
|
-
- lib/braintree/settlement_batch_summary_gateway.rb
|
70
|
-
- lib/braintree/customer_search.rb
|
71
|
-
- lib/braintree/configuration.rb
|
72
65
|
- lib/braintree/webhook_testing_gateway.rb
|
73
|
-
- lib/braintree/
|
74
|
-
- lib/braintree/
|
75
|
-
- lib/braintree/
|
76
|
-
- lib/braintree/address/country_names.rb
|
66
|
+
- lib/braintree/transaction_search.rb
|
67
|
+
- lib/braintree/risk_data.rb
|
68
|
+
- lib/braintree/transparent_redirect.rb
|
77
69
|
- lib/braintree/digest.rb
|
78
|
-
- lib/braintree/
|
70
|
+
- lib/braintree/plan.rb
|
79
71
|
- lib/braintree/oauth_credentials.rb
|
80
|
-
- lib/braintree/
|
72
|
+
- lib/braintree/resource_collection.rb
|
81
73
|
- lib/braintree/payment_instrument_type.rb
|
74
|
+
- lib/braintree/subscription.rb
|
75
|
+
- lib/braintree/payment_method_gateway.rb
|
76
|
+
- lib/braintree/error_result.rb
|
77
|
+
- lib/braintree/three_d_secure_info.rb
|
78
|
+
- lib/braintree/settlement_batch.rb
|
79
|
+
- lib/braintree/plan_gateway.rb
|
80
|
+
- lib/braintree/webhook_notification_gateway.rb
|
81
|
+
- lib/braintree/advanced_search.rb
|
82
|
+
- lib/braintree/coinbase_account.rb
|
83
|
+
- lib/braintree/xml/rexml.rb
|
82
84
|
- lib/braintree/xml/libxml.rb
|
83
85
|
- lib/braintree/xml/generator.rb
|
84
|
-
- lib/braintree/xml/rexml.rb
|
85
86
|
- lib/braintree/xml/parser.rb
|
86
|
-
- lib/braintree/
|
87
|
+
- lib/braintree/merchant_gateway.rb
|
88
|
+
- lib/braintree/europe_bank_account_gateway.rb
|
89
|
+
- lib/braintree/customer.rb
|
90
|
+
- lib/braintree/settlement_batch_summary_gateway.rb
|
91
|
+
- lib/braintree/credit_card.rb
|
92
|
+
- lib/braintree/android_pay_card.rb
|
93
|
+
- lib/braintree/dispute.rb
|
94
|
+
- lib/braintree/subscription_gateway.rb
|
95
|
+
- lib/braintree/client_token.rb
|
96
|
+
- lib/braintree/transaction.rb
|
97
|
+
- lib/braintree/paypal_account.rb
|
98
|
+
- lib/braintree/webhook_notification.rb
|
99
|
+
- lib/braintree/disbursement.rb
|
100
|
+
- lib/braintree/http.rb
|
101
|
+
- lib/braintree/webhook_testing.rb
|
102
|
+
- lib/braintree/unknown_payment_method.rb
|
103
|
+
- lib/braintree/validation_error_collection.rb
|
104
|
+
- lib/braintree/merchant.rb
|
105
|
+
- lib/braintree/sha256_digest.rb
|
106
|
+
- lib/braintree/credit_card_verification_gateway.rb
|
107
|
+
- lib/braintree/xml.rb
|
87
108
|
- lib/braintree/modification.rb
|
88
109
|
- lib/braintree/transaction_gateway.rb
|
89
|
-
- lib/braintree/
|
90
|
-
- lib/braintree/
|
91
|
-
- lib/braintree/
|
92
|
-
- lib/braintree/
|
93
|
-
- lib/braintree/
|
94
|
-
- lib/braintree/
|
95
|
-
- lib/braintree/transaction/address_details.rb
|
110
|
+
- lib/braintree/payment_method_nonce_gateway.rb
|
111
|
+
- lib/braintree/testing_gateway.rb
|
112
|
+
- lib/braintree/version.rb
|
113
|
+
- lib/braintree/successful_result.rb
|
114
|
+
- lib/braintree/base_module.rb
|
115
|
+
- lib/braintree/transaction/status_details.rb
|
96
116
|
- lib/braintree/transaction/coinbase_details.rb
|
97
|
-
- lib/braintree/transaction/
|
98
|
-
- lib/braintree/transaction/
|
99
|
-
- lib/braintree/transaction/
|
117
|
+
- lib/braintree/transaction/paypal_details.rb
|
118
|
+
- lib/braintree/transaction/customer_details.rb
|
119
|
+
- lib/braintree/transaction/address_details.rb
|
100
120
|
- lib/braintree/transaction/disbursement_details.rb
|
101
121
|
- lib/braintree/transaction/subscription_details.rb
|
102
|
-
- lib/braintree/transaction/
|
122
|
+
- lib/braintree/transaction/apple_pay_details.rb
|
123
|
+
- lib/braintree/transaction/android_pay_details.rb
|
124
|
+
- lib/braintree/transaction/venmo_account_details.rb
|
103
125
|
- lib/braintree/transaction/credit_card_details.rb
|
104
126
|
- lib/braintree/transaction/amex_express_checkout_details.rb
|
105
|
-
- lib/braintree/
|
106
|
-
- lib/braintree/
|
107
|
-
- lib/braintree/transaction_search.rb
|
127
|
+
- lib/braintree/address_gateway.rb
|
128
|
+
- lib/braintree/customer_search.rb
|
108
129
|
- lib/braintree/exceptions.rb
|
109
|
-
- lib/braintree/
|
110
|
-
- lib/braintree/
|
111
|
-
- lib/braintree/
|
130
|
+
- lib/braintree/dispute/transaction_details.rb
|
131
|
+
- lib/braintree/credit_card_gateway.rb
|
132
|
+
- lib/braintree/credit_card_verification.rb
|
133
|
+
- lib/braintree/transparent_redirect_gateway.rb
|
134
|
+
- lib/braintree/payment_method_nonce.rb
|
135
|
+
- lib/braintree/customer_gateway.rb
|
136
|
+
- lib/braintree/merchant_account.rb
|
112
137
|
- lib/braintree/test/venmo_sdk.rb
|
113
|
-
- lib/braintree/test/transaction_amounts.rb
|
114
|
-
- lib/braintree/test/nonce.rb
|
115
138
|
- lib/braintree/test/credit_card.rb
|
139
|
+
- lib/braintree/test/nonce.rb
|
140
|
+
- lib/braintree/test/transaction_amounts.rb
|
116
141
|
- lib/braintree/test/merchant_account.rb
|
117
|
-
- lib/braintree/
|
118
|
-
- lib/braintree/
|
119
|
-
- lib/braintree/
|
120
|
-
- lib/braintree/payment_method_nonce_gateway.rb
|
121
|
-
- lib/braintree/transparent_redirect.rb
|
122
|
-
- lib/braintree/unknown_payment_method.rb
|
123
|
-
- lib/braintree/descriptor.rb
|
124
|
-
- lib/braintree/credit_card_verification_search.rb
|
125
|
-
- lib/braintree/signature_service.rb
|
126
|
-
- lib/braintree/europe_bank_account_gateway.rb
|
127
|
-
- lib/braintree/error_result.rb
|
128
|
-
- lib/braintree/credit_card_verification.rb
|
129
|
-
- lib/braintree/customer_gateway.rb
|
130
|
-
- lib/braintree/discount.rb
|
131
|
-
- lib/braintree/subscription.rb
|
142
|
+
- lib/braintree/amex_express_checkout_card.rb
|
143
|
+
- lib/braintree/gateway.rb
|
144
|
+
- lib/braintree/address/country_names.rb
|
132
145
|
- lib/braintree/credentials_parser.rb
|
133
146
|
- lib/braintree/settlement_batch_summary.rb
|
134
|
-
- lib/braintree/
|
135
|
-
- lib/braintree/validation_error_collection.rb
|
136
|
-
- lib/braintree/resource_collection.rb
|
137
|
-
- lib/braintree/disbursement.rb
|
138
|
-
- lib/braintree/apple_pay_card.rb
|
139
|
-
- lib/braintree/coinbase_account.rb
|
140
|
-
- lib/braintree/credit_card.rb
|
141
|
-
- lib/braintree/oauth_gateway.rb
|
142
|
-
- lib/braintree/transparent_redirect_gateway.rb
|
143
|
-
- lib/braintree/client_token_gateway.rb
|
144
|
-
- lib/braintree/customer.rb
|
145
|
-
- lib/braintree/error_codes.rb
|
146
|
-
- lib/braintree/merchant_account.rb
|
147
|
-
- lib/ssl/securetrust_ca.crt
|
147
|
+
- lib/braintree/payment_method.rb
|
148
148
|
- lib/ssl/api_braintreegateway_com.ca.crt
|
149
|
-
-
|
150
|
-
- spec/integration/braintree/http_spec.rb
|
151
|
-
- spec/integration/braintree/payment_method_nonce_spec.rb
|
152
|
-
- spec/integration/braintree/add_on_spec.rb
|
153
|
-
- spec/integration/braintree/disbursement_spec.rb
|
154
|
-
- spec/integration/braintree/error_codes_spec.rb
|
155
|
-
- spec/integration/braintree/merchant_spec.rb
|
156
|
-
- spec/integration/braintree/customer_spec.rb
|
157
|
-
- spec/integration/braintree/merchant_account_spec.rb
|
158
|
-
- spec/integration/braintree/oauth_spec.rb
|
159
|
-
- spec/integration/braintree/plan_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/transaction_search_spec.rb
|
163
|
-
- spec/integration/braintree/discount_spec.rb
|
164
|
-
- spec/integration/braintree/transaction_spec.rb
|
165
|
-
- spec/integration/braintree/subscription_spec.rb
|
166
|
-
- spec/integration/braintree/customer_search_spec.rb
|
167
|
-
- spec/integration/braintree/credit_card_verification_search_spec.rb
|
168
|
-
- spec/integration/braintree/coinbase_spec.rb
|
169
|
-
- spec/integration/braintree/test/transaction_amounts_spec.rb
|
170
|
-
- spec/integration/braintree/payment_method_spec.rb
|
171
|
-
- spec/integration/braintree/credit_card_spec.rb
|
172
|
-
- spec/integration/braintree/transparent_redirect_spec.rb
|
173
|
-
- spec/integration/braintree/credit_card_verification_spec.rb
|
174
|
-
- spec/integration/braintree/test_transaction_spec.rb
|
175
|
-
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
176
|
-
- spec/integration/braintree/paypal_account_spec.rb
|
177
|
-
- spec/integration/braintree/address_spec.rb
|
178
|
-
- spec/integration/braintree/advanced_search_spec.rb
|
179
|
-
- spec/integration/spec_helper.rb
|
149
|
+
- lib/ssl/securetrust_ca.crt
|
180
150
|
- spec/script/httpsd.rb
|
181
151
|
- spec/httpsd.pid
|
182
152
|
- spec/hacks/tcp_socket.rb
|
183
|
-
- spec/
|
184
|
-
- spec/
|
185
|
-
- spec/
|
186
|
-
- spec/
|
153
|
+
- spec/oauth_test_helper.rb
|
154
|
+
- spec/unit/braintree/configuration_spec.rb
|
155
|
+
- spec/unit/braintree/credit_card_spec.rb
|
156
|
+
- spec/unit/braintree/risk_data_spec.rb
|
187
157
|
- spec/unit/braintree/digest_spec.rb
|
158
|
+
- spec/unit/braintree/client_token_spec.rb
|
188
159
|
- spec/unit/braintree/three_d_secure_info_spec.rb
|
189
|
-
- spec/unit/braintree/
|
190
|
-
- spec/unit/braintree/
|
191
|
-
- spec/unit/braintree/
|
160
|
+
- spec/unit/braintree/payment_method_spec.rb
|
161
|
+
- spec/unit/braintree/transaction_spec.rb
|
162
|
+
- spec/unit/braintree/address_spec.rb
|
192
163
|
- spec/unit/braintree/successful_result_spec.rb
|
193
|
-
- spec/unit/braintree/configuration_spec.rb
|
194
|
-
- spec/unit/braintree/disbursement_spec.rb
|
195
|
-
- spec/unit/braintree/subscription_search_spec.rb
|
196
|
-
- spec/unit/braintree/customer_spec.rb
|
197
|
-
- spec/unit/braintree/dispute_spec.rb
|
198
|
-
- spec/unit/braintree/merchant_account_spec.rb
|
199
|
-
- spec/unit/braintree/sha256_digest_spec.rb
|
200
|
-
- spec/unit/braintree/apple_pay_card_spec.rb
|
201
164
|
- spec/unit/braintree/util_spec.rb
|
202
|
-
- spec/unit/braintree/
|
203
|
-
- spec/unit/braintree/transaction_search_spec.rb
|
165
|
+
- spec/unit/braintree/transparent_redirect_spec.rb
|
204
166
|
- spec/unit/braintree/modification_spec.rb
|
205
|
-
- spec/unit/braintree/
|
167
|
+
- spec/unit/braintree/unknown_payment_method_spec.rb
|
168
|
+
- spec/unit/braintree/apple_pay_card_spec.rb
|
169
|
+
- spec/unit/braintree/sha256_digest_spec.rb
|
170
|
+
- spec/unit/braintree/base_module_spec.rb
|
206
171
|
- spec/unit/braintree/xml_spec.rb
|
207
|
-
- spec/unit/braintree/
|
208
|
-
- spec/unit/braintree/
|
209
|
-
- spec/unit/braintree/
|
172
|
+
- spec/unit/braintree/validation_error_spec.rb
|
173
|
+
- spec/unit/braintree/credit_card_verification_search_spec.rb
|
174
|
+
- spec/unit/braintree/subscription_search_spec.rb
|
175
|
+
- spec/unit/braintree/xml/libxml_spec.rb
|
210
176
|
- spec/unit/braintree/xml/parser_spec.rb
|
211
177
|
- spec/unit/braintree/xml/rexml_spec.rb
|
212
|
-
- spec/unit/braintree/
|
213
|
-
- spec/unit/braintree/
|
214
|
-
- spec/unit/braintree/
|
215
|
-
- spec/unit/braintree/
|
216
|
-
- spec/unit/braintree/
|
178
|
+
- spec/unit/braintree/http_spec.rb
|
179
|
+
- spec/unit/braintree/errors_spec.rb
|
180
|
+
- spec/unit/braintree/merchant_account_spec.rb
|
181
|
+
- spec/unit/braintree/dispute_spec.rb
|
182
|
+
- spec/unit/braintree/signature_service_spec.rb
|
183
|
+
- spec/unit/braintree/customer_spec.rb
|
184
|
+
- spec/unit/braintree/transaction_search_spec.rb
|
185
|
+
- spec/unit/braintree/subscription_spec.rb
|
186
|
+
- spec/unit/braintree/paypal_account_spec.rb
|
187
|
+
- spec/unit/braintree/webhook_notification_spec.rb
|
217
188
|
- spec/unit/braintree/transaction/deposit_details_spec.rb
|
218
189
|
- spec/unit/braintree/transaction/credit_card_details_spec.rb
|
219
|
-
- spec/unit/braintree/
|
220
|
-
- spec/unit/braintree/payment_method_spec.rb
|
221
|
-
- spec/unit/braintree/credit_card_spec.rb
|
222
|
-
- spec/unit/braintree/transparent_redirect_spec.rb
|
190
|
+
- spec/unit/braintree/transaction/customer_details_spec.rb
|
223
191
|
- spec/unit/braintree/validation_error_collection_spec.rb
|
224
192
|
- spec/unit/braintree/credit_card_verification_spec.rb
|
225
|
-
- spec/unit/braintree/
|
226
|
-
- spec/unit/braintree/
|
227
|
-
- spec/unit/braintree/
|
228
|
-
- spec/unit/braintree/
|
229
|
-
- spec/unit/braintree/signature_service_spec.rb
|
193
|
+
- spec/unit/braintree/error_result_spec.rb
|
194
|
+
- spec/unit/braintree/disbursement_spec.rb
|
195
|
+
- spec/unit/braintree/resource_collection_spec.rb
|
196
|
+
- spec/unit/braintree/credentials_parser_spec.rb
|
230
197
|
- spec/unit/braintree_spec.rb
|
231
198
|
- spec/unit/spec_helper.rb
|
232
|
-
- spec/
|
199
|
+
- spec/spec.opts
|
200
|
+
- spec/ssl/certificate.crt
|
201
|
+
- spec/ssl/privateKey.key
|
202
|
+
- spec/ssl/geotrust_global.crt
|
203
|
+
- spec/integration/braintree/plan_spec.rb
|
204
|
+
- spec/integration/braintree/credit_card_spec.rb
|
205
|
+
- spec/integration/braintree/client_api/client_token_spec.rb
|
206
|
+
- spec/integration/braintree/client_api/spec_helper.rb
|
207
|
+
- spec/integration/braintree/payment_method_spec.rb
|
208
|
+
- spec/integration/braintree/transaction_spec.rb
|
209
|
+
- spec/integration/braintree/address_spec.rb
|
210
|
+
- spec/integration/braintree/transparent_redirect_spec.rb
|
211
|
+
- spec/integration/braintree/merchant_spec.rb
|
212
|
+
- spec/integration/braintree/credit_card_verification_search_spec.rb
|
213
|
+
- spec/integration/braintree/coinbase_spec.rb
|
214
|
+
- spec/integration/braintree/http_spec.rb
|
215
|
+
- spec/integration/braintree/merchant_account_spec.rb
|
216
|
+
- spec/integration/braintree/customer_spec.rb
|
217
|
+
- spec/integration/braintree/transaction_search_spec.rb
|
218
|
+
- spec/integration/braintree/subscription_spec.rb
|
219
|
+
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
220
|
+
- spec/integration/braintree/oauth_spec.rb
|
221
|
+
- spec/integration/braintree/payment_method_nonce_spec.rb
|
222
|
+
- spec/integration/braintree/advanced_search_spec.rb
|
223
|
+
- spec/integration/braintree/paypal_account_spec.rb
|
224
|
+
- spec/integration/braintree/test_transaction_spec.rb
|
225
|
+
- spec/integration/braintree/credit_card_verification_spec.rb
|
226
|
+
- spec/integration/braintree/discount_spec.rb
|
227
|
+
- spec/integration/braintree/customer_search_spec.rb
|
228
|
+
- spec/integration/braintree/add_on_spec.rb
|
229
|
+
- spec/integration/braintree/disbursement_spec.rb
|
230
|
+
- spec/integration/braintree/test/transaction_amounts_spec.rb
|
231
|
+
- spec/integration/braintree/error_codes_spec.rb
|
232
|
+
- spec/integration/spec_helper.rb
|
233
|
+
- spec/spec_helper.rb
|
233
234
|
- braintree.gemspec
|
234
235
|
homepage: http://www.braintreepayments.com/
|
235
236
|
licenses:
|