braintree 2.40.0 → 2.41.0
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.rb +2 -2
- data/lib/braintree/add_on.rb +0 -1
- data/lib/braintree/address.rb +0 -1
- data/lib/braintree/apple_pay_card.rb +0 -1
- data/lib/braintree/configuration.rb +0 -1
- data/lib/braintree/credit_card.rb +0 -33
- data/lib/braintree/credit_card_verification.rb +0 -1
- data/lib/braintree/customer.rb +1 -32
- data/lib/braintree/discount.rb +0 -1
- data/lib/braintree/error_codes.rb +1 -6
- data/lib/braintree/error_result.rb +0 -1
- data/lib/braintree/errors.rb +0 -1
- data/lib/braintree/{sepa_bank_account.rb → europe_bank_account.rb} +2 -2
- data/lib/braintree/{sepa_bank_account_gateway.rb → europe_bank_account_gateway.rb} +3 -3
- data/lib/braintree/gateway.rb +2 -3
- data/lib/braintree/payment_instrument_type.rb +1 -1
- data/lib/braintree/payment_method_gateway.rb +4 -4
- data/lib/braintree/paypal_account.rb +0 -2
- data/lib/braintree/plan.rb +0 -2
- data/lib/braintree/subscription.rb +0 -6
- data/lib/braintree/successful_result.rb +0 -1
- data/lib/braintree/test/credit_card.rb +0 -2
- data/lib/braintree/test/transaction_amounts.rb +0 -2
- data/lib/braintree/transaction.rb +0 -27
- data/lib/braintree/transaction/credit_card_details.rb +2 -2
- data/lib/braintree/transaction/paypal_details.rb +2 -1
- data/lib/braintree/transaction_search.rb +1 -1
- data/lib/braintree/transparent_redirect.rb +0 -11
- data/lib/braintree/validation_error.rb +0 -1
- data/lib/braintree/validation_error_collection.rb +0 -1
- data/lib/braintree/version.rb +1 -1
- data/spec/httpsd.pid +1 -1
- data/spec/integration/braintree/client_api/client_token_spec.rb +1 -1
- data/spec/integration/braintree/client_api/spec_helper.rb +3 -4
- data/spec/integration/braintree/credit_card_spec.rb +1 -1
- data/spec/integration/braintree/payment_method_spec.rb +2 -2
- data/spec/integration/braintree/transaction_search_spec.rb +3 -3
- data/spec/integration/braintree/transaction_spec.rb +16 -0
- data/spec/unit/braintree/transaction/credit_card_details_spec.rb +3 -2
- metadata +161 -157
- checksums.yaml +0 -7
@@ -459,7 +459,7 @@ describe Braintree::PaymentMethod do
|
|
459
459
|
it "returns the SEPA bank account behind the nonce" do
|
460
460
|
config = Braintree::Configuration.instantiate
|
461
461
|
customer = Braintree::Customer.create.customer
|
462
|
-
raw_client_token = Braintree::ClientToken.generate(:customer_id => customer.id, :sepa_mandate_type => Braintree::
|
462
|
+
raw_client_token = Braintree::ClientToken.generate(:customer_id => customer.id, :sepa_mandate_type => Braintree::EuropeBankAccount::MandateType::Business)
|
463
463
|
client_token = decode_client_token(raw_client_token)
|
464
464
|
authorization_fingerprint = client_token["authorizationFingerprint"]
|
465
465
|
http = ClientApiHttp.new(
|
@@ -467,7 +467,7 @@ describe Braintree::PaymentMethod do
|
|
467
467
|
:authorization_fingerprint => authorization_fingerprint
|
468
468
|
)
|
469
469
|
|
470
|
-
nonce = http.
|
470
|
+
nonce = http.create_europe_bank_account_nonce(
|
471
471
|
:accountHolderName => "Bob Holder",
|
472
472
|
:iban => "DE89370400440532013000",
|
473
473
|
:bic => "DEUTDEFF",
|
@@ -151,7 +151,7 @@ describe Braintree::Transaction, "search" do
|
|
151
151
|
with_altpay_merchant do
|
152
152
|
config = Braintree::Configuration.instantiate
|
153
153
|
customer = Braintree::Customer.create.customer
|
154
|
-
raw_client_token = Braintree::ClientToken.generate(:customer_id => customer.id, :sepa_mandate_type => Braintree::
|
154
|
+
raw_client_token = Braintree::ClientToken.generate(:customer_id => customer.id, :sepa_mandate_type => Braintree::EuropeBankAccount::MandateType::Business)
|
155
155
|
client_token = decode_client_token(raw_client_token)
|
156
156
|
authorization_fingerprint = client_token["authorizationFingerprint"]
|
157
157
|
http = ClientApiHttp.new(
|
@@ -159,7 +159,7 @@ describe Braintree::Transaction, "search" do
|
|
159
159
|
:authorization_fingerprint => authorization_fingerprint
|
160
160
|
)
|
161
161
|
|
162
|
-
nonce = http.
|
162
|
+
nonce = http.create_europe_bank_account_nonce(
|
163
163
|
:accountHolderName => "Bob Holder",
|
164
164
|
:iban => "DE89370400440532013000",
|
165
165
|
:bic => "DEUTDEFF",
|
@@ -178,7 +178,7 @@ describe Braintree::Transaction, "search" do
|
|
178
178
|
)
|
179
179
|
|
180
180
|
collection = Braintree::Transaction.search do |search|
|
181
|
-
search.
|
181
|
+
search.europe_bank_account_iban.is "DE89370400440532013000"
|
182
182
|
end
|
183
183
|
|
184
184
|
collection.maximum_size.should >= 1
|
@@ -2784,6 +2784,22 @@ describe Braintree::Transaction do
|
|
2784
2784
|
created_transaction.disputes.should == []
|
2785
2785
|
end
|
2786
2786
|
end
|
2787
|
+
|
2788
|
+
context "paypal" do
|
2789
|
+
it "returns all the required paypal fields" do
|
2790
|
+
transaction = Braintree::Transaction.find("settledtransaction")
|
2791
|
+
|
2792
|
+
transaction.paypal_details.debug_id.should_not be_nil
|
2793
|
+
transaction.paypal_details.payer_email.should_not be_nil
|
2794
|
+
transaction.paypal_details.authorization_id.should_not be_nil
|
2795
|
+
transaction.paypal_details.payer_id.should_not be_nil
|
2796
|
+
transaction.paypal_details.payer_first_name.should_not be_nil
|
2797
|
+
transaction.paypal_details.payer_last_name.should_not be_nil
|
2798
|
+
transaction.paypal_details.seller_protection_status.should_not be_nil
|
2799
|
+
transaction.paypal_details.capture_id.should_not be_nil
|
2800
|
+
transaction.paypal_details.refund_id.should_not be_nil
|
2801
|
+
end
|
2802
|
+
end
|
2787
2803
|
end
|
2788
2804
|
|
2789
2805
|
describe "self.hold_in_escrow" do
|
@@ -29,9 +29,10 @@ describe Braintree::Transaction::CreditCardDetails do
|
|
29
29
|
:commercial => "Unknown",
|
30
30
|
:payroll => "Unknown",
|
31
31
|
:country_of_issuance => "Lilliput",
|
32
|
-
:issuing_bank => "Gulliver Bank"
|
32
|
+
:issuing_bank => "Gulliver Bank",
|
33
|
+
:image_url => "example.com/visa.png"
|
33
34
|
)
|
34
|
-
details.inspect.should == %(#<token: "token", bin: "123456", last_4: "6789", card_type: "Visa", expiration_date: "05/2012", cardholder_name: "The Cardholder", customer_location: "US", prepaid: "Yes", healthcare: "No", durbin_regulated: "No", debit: "Yes", commercial: "Unknown", payroll: "Unknown", country_of_issuance: "Lilliput", issuing_bank: "Gulliver Bank">)
|
35
|
+
details.inspect.should == %(#<token: "token", bin: "123456", last_4: "6789", card_type: "Visa", expiration_date: "05/2012", cardholder_name: "The Cardholder", customer_location: "US", prepaid: "Yes", healthcare: "No", durbin_regulated: "No", debit: "Yes", commercial: "Unknown", payroll: "Unknown", country_of_issuance: "Lilliput", issuing_bank: "Gulliver Bank", image_url: "example.com/visa.png">)
|
35
36
|
end
|
36
37
|
|
37
38
|
end
|
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.
|
4
|
+
version: 2.41.0
|
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: 2015-
|
12
|
+
date: 2015-03-30 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
|
@@ -32,210 +35,211 @@ extra_rdoc_files: []
|
|
32
35
|
files:
|
33
36
|
- README.rdoc
|
34
37
|
- LICENSE
|
35
|
-
- lib/braintree.rb
|
36
|
-
- lib/braintree/
|
37
|
-
- lib/braintree/
|
38
|
+
- lib/braintree/successful_result.rb
|
39
|
+
- lib/braintree/exceptions.rb
|
40
|
+
- lib/braintree/version.rb
|
38
41
|
- lib/braintree/credit_card_gateway.rb
|
39
|
-
- lib/braintree/
|
40
|
-
- lib/braintree/
|
41
|
-
- lib/braintree/
|
42
|
-
- lib/braintree/
|
42
|
+
- lib/braintree/europe_bank_account.rb
|
43
|
+
- lib/braintree/base_module.rb
|
44
|
+
- lib/braintree/subscription_search.rb
|
45
|
+
- lib/braintree/paypal_account.rb
|
46
|
+
- lib/braintree/signature_service.rb
|
43
47
|
- lib/braintree/client_token.rb
|
44
|
-
- lib/braintree/
|
45
|
-
- lib/braintree/
|
46
|
-
- lib/braintree/advanced_search.rb
|
47
|
-
- lib/braintree/errors.rb
|
48
|
-
- lib/braintree/version.rb
|
49
|
-
- lib/braintree/util.rb
|
48
|
+
- lib/braintree/validation_error.rb
|
49
|
+
- lib/braintree/testing_gateway.rb
|
50
50
|
- lib/braintree/webhook_notification.rb
|
51
|
-
- lib/braintree/
|
51
|
+
- lib/braintree/http.rb
|
52
|
+
- lib/braintree/webhook_notification_gateway.rb
|
53
|
+
- lib/braintree/transparent_redirect_gateway.rb
|
54
|
+
- lib/braintree/subscription/status_details.rb
|
55
|
+
- lib/braintree/subscription_gateway.rb
|
56
|
+
- lib/braintree/customer.rb
|
57
|
+
- lib/braintree/test_transaction.rb
|
58
|
+
- lib/braintree/credit_card_verification_gateway.rb
|
59
|
+
- lib/braintree/transparent_redirect.rb
|
60
|
+
- lib/braintree/payment_method_nonce.rb
|
61
|
+
- lib/braintree/payment_method_gateway.rb
|
62
|
+
- lib/braintree/disbursement.rb
|
63
|
+
- lib/braintree/subscription.rb
|
64
|
+
- lib/braintree/discount_gateway.rb
|
65
|
+
- lib/braintree/error_codes.rb
|
66
|
+
- lib/braintree/coinbase_account.rb
|
67
|
+
- lib/braintree/sha256_digest.rb
|
68
|
+
- lib/braintree/transaction.rb
|
69
|
+
- lib/braintree/util.rb
|
70
|
+
- lib/braintree/discount.rb
|
71
|
+
- lib/braintree/europe_bank_account_gateway.rb
|
72
|
+
- lib/braintree/plan.rb
|
73
|
+
- lib/braintree/risk_data.rb
|
74
|
+
- lib/braintree/plan_gateway.rb
|
75
|
+
- lib/braintree/webhook_testing_gateway.rb
|
76
|
+
- lib/braintree/merchant_account_gateway.rb
|
77
|
+
- lib/braintree/settlement_batch_summary_gateway.rb
|
78
|
+
- lib/braintree/settlement_batch_summary.rb
|
79
|
+
- lib/braintree/resource_collection.rb
|
80
|
+
- lib/braintree/dispute.rb
|
81
|
+
- lib/braintree/transaction_search.rb
|
82
|
+
- lib/braintree/digest.rb
|
83
|
+
- lib/braintree/address_gateway.rb
|
84
|
+
- lib/braintree/transaction/address_details.rb
|
52
85
|
- lib/braintree/transaction/disbursement_details.rb
|
86
|
+
- lib/braintree/transaction/credit_card_details.rb
|
53
87
|
- lib/braintree/transaction/status_details.rb
|
54
|
-
- lib/braintree/transaction/
|
88
|
+
- lib/braintree/transaction/customer_details.rb
|
55
89
|
- lib/braintree/transaction/coinbase_details.rb
|
56
|
-
- lib/braintree/transaction/subscription_details.rb
|
57
90
|
- lib/braintree/transaction/apple_pay_details.rb
|
58
|
-
- lib/braintree/transaction/
|
59
|
-
- lib/braintree/transaction/
|
60
|
-
- lib/braintree/
|
61
|
-
- lib/braintree/error_result.rb
|
62
|
-
- lib/braintree/dispute.rb
|
91
|
+
- lib/braintree/transaction/subscription_details.rb
|
92
|
+
- lib/braintree/transaction/paypal_details.rb
|
93
|
+
- lib/braintree/payment_method_nonce_gateway.rb
|
63
94
|
- lib/braintree/credit_card_verification.rb
|
64
|
-
- lib/braintree/
|
65
|
-
- lib/braintree/test/nonce.rb
|
66
|
-
- lib/braintree/test/merchant_account.rb
|
67
|
-
- lib/braintree/test/credit_card.rb
|
68
|
-
- lib/braintree/test/transaction_amounts.rb
|
69
|
-
- lib/braintree/testing_gateway.rb
|
70
|
-
- lib/braintree/digest.rb
|
71
|
-
- lib/braintree/transparent_redirect_gateway.rb
|
72
|
-
- lib/braintree/customer_search.rb
|
73
|
-
- lib/braintree/base_module.rb
|
74
|
-
- lib/braintree/subscription.rb
|
95
|
+
- lib/braintree/modification.rb
|
75
96
|
- lib/braintree/apple_pay_card.rb
|
76
|
-
- lib/braintree/merchant_account/individual_details.rb
|
77
|
-
- lib/braintree/merchant_account/funding_details.rb
|
78
|
-
- lib/braintree/merchant_account/address_details.rb
|
79
|
-
- lib/braintree/merchant_account/business_details.rb
|
80
|
-
- lib/braintree/plan.rb
|
81
|
-
- lib/braintree/sepa_bank_account.rb
|
82
|
-
- lib/braintree/payment_method.rb
|
83
|
-
- lib/braintree/validation_error_collection.rb
|
84
|
-
- lib/braintree/transaction_gateway.rb
|
85
97
|
- lib/braintree/webhook_testing.rb
|
86
|
-
- lib/braintree/
|
98
|
+
- lib/braintree/merchant_account.rb
|
87
99
|
- lib/braintree/add_on.rb
|
88
|
-
- lib/braintree/xml/generator.rb
|
89
100
|
- lib/braintree/xml/libxml.rb
|
90
101
|
- lib/braintree/xml/parser.rb
|
91
102
|
- lib/braintree/xml/rexml.rb
|
92
|
-
- lib/braintree/
|
103
|
+
- lib/braintree/xml/generator.rb
|
93
104
|
- lib/braintree/unknown_payment_method.rb
|
94
|
-
- lib/braintree/
|
95
|
-
- lib/braintree/
|
96
|
-
- lib/braintree/
|
97
|
-
- lib/braintree/
|
98
|
-
- lib/braintree/
|
99
|
-
- lib/braintree/
|
100
|
-
- lib/braintree/merchant_account.rb
|
101
|
-
- lib/braintree/paypal_account.rb
|
102
|
-
- lib/braintree/credit_card.rb
|
105
|
+
- lib/braintree/errors.rb
|
106
|
+
- lib/braintree/credit_card_verification_search.rb
|
107
|
+
- lib/braintree/merchant_account/address_details.rb
|
108
|
+
- lib/braintree/merchant_account/individual_details.rb
|
109
|
+
- lib/braintree/merchant_account/funding_details.rb
|
110
|
+
- lib/braintree/merchant_account/business_details.rb
|
103
111
|
- lib/braintree/add_on_gateway.rb
|
112
|
+
- lib/braintree/client_token_gateway.rb
|
113
|
+
- lib/braintree/transaction_gateway.rb
|
114
|
+
- lib/braintree/credit_card.rb
|
115
|
+
- lib/braintree/settlement_batch.rb
|
116
|
+
- lib/braintree/descriptor.rb
|
117
|
+
- lib/braintree/customer_gateway.rb
|
104
118
|
- lib/braintree/configuration.rb
|
105
|
-
- lib/braintree/
|
106
|
-
- lib/braintree/
|
107
|
-
- lib/braintree/
|
119
|
+
- lib/braintree/paypal_account_gateway.rb
|
120
|
+
- lib/braintree/xml.rb
|
121
|
+
- lib/braintree/advanced_search.rb
|
122
|
+
- lib/braintree/payment_instrument_type.rb
|
108
123
|
- lib/braintree/dispute/transaction_details.rb
|
109
|
-
- lib/braintree/
|
110
|
-
- lib/braintree/
|
111
|
-
- lib/braintree/validation_error.rb
|
112
|
-
- lib/braintree/transparent_redirect.rb
|
124
|
+
- lib/braintree/error_result.rb
|
125
|
+
- lib/braintree/customer_search.rb
|
113
126
|
- lib/braintree/gateway.rb
|
114
|
-
- lib/braintree/
|
115
|
-
- lib/braintree/
|
116
|
-
- lib/braintree/
|
117
|
-
- lib/braintree/
|
118
|
-
- lib/braintree/
|
119
|
-
- lib/braintree/
|
120
|
-
- lib/braintree/
|
121
|
-
- lib/braintree/
|
122
|
-
- lib/braintree/
|
123
|
-
- lib/braintree
|
124
|
-
- lib/
|
125
|
-
- lib/braintree/descriptor.rb
|
126
|
-
- lib/braintree/test_transaction.rb
|
127
|
-
- lib/braintree/settlement_batch.rb
|
128
|
-
- lib/braintree/settlement_batch_summary_gateway.rb
|
129
|
-
- lib/braintree/sha256_digest.rb
|
130
|
-
- lib/braintree/discount_gateway.rb
|
131
|
-
- lib/braintree/discount.rb
|
132
|
-
- lib/braintree/coinbase_account.rb
|
133
|
-
- lib/braintree/resource_collection.rb
|
134
|
-
- lib/ssl/www_braintreegateway_com.ca.crt
|
127
|
+
- lib/braintree/test/transaction_amounts.rb
|
128
|
+
- lib/braintree/test/nonce.rb
|
129
|
+
- lib/braintree/test/merchant_account.rb
|
130
|
+
- lib/braintree/test/venmo_sdk.rb
|
131
|
+
- lib/braintree/test/credit_card.rb
|
132
|
+
- lib/braintree/payment_method.rb
|
133
|
+
- lib/braintree/address/country_names.rb
|
134
|
+
- lib/braintree/address.rb
|
135
|
+
- lib/braintree/validation_error_collection.rb
|
136
|
+
- lib/braintree.rb
|
137
|
+
- lib/ssl/api_braintreegateway_com.ca.crt
|
135
138
|
- lib/ssl/sandbox_braintreegateway_com.ca.crt
|
139
|
+
- lib/ssl/www_braintreegateway_com.ca.crt
|
136
140
|
- lib/ssl/securetrust_ca.crt
|
137
|
-
-
|
138
|
-
- spec/script/httpsd.rb
|
139
|
-
- spec/unit/braintree_spec.rb
|
140
|
-
- spec/unit/braintree/credit_card_verification_search_spec.rb
|
141
|
-
- spec/unit/braintree/credit_card_spec.rb
|
142
|
-
- spec/unit/braintree/subscription_search_spec.rb
|
143
|
-
- spec/unit/braintree/dispute_spec.rb
|
144
|
-
- spec/unit/braintree/transaction/customer_details_spec.rb
|
145
|
-
- spec/unit/braintree/transaction/credit_card_details_spec.rb
|
146
|
-
- spec/unit/braintree/transaction/deposit_details_spec.rb
|
147
|
-
- spec/unit/braintree/risk_data_spec.rb
|
148
|
-
- spec/unit/braintree/digest_spec.rb
|
149
|
-
- spec/unit/braintree/error_result_spec.rb
|
150
|
-
- spec/unit/braintree/errors_spec.rb
|
151
|
-
- spec/unit/braintree/xml_spec.rb
|
152
|
-
- spec/unit/braintree/resource_collection_spec.rb
|
153
|
-
- spec/unit/braintree/util_spec.rb
|
154
|
-
- spec/unit/braintree/successful_result_spec.rb
|
155
|
-
- spec/unit/braintree/client_token_spec.rb
|
156
|
-
- spec/unit/braintree/subscription_spec.rb
|
157
|
-
- spec/unit/braintree/xml/libxml_spec.rb
|
158
|
-
- spec/unit/braintree/xml/rexml_spec.rb
|
159
|
-
- spec/unit/braintree/xml/parser_spec.rb
|
160
|
-
- spec/unit/braintree/modification_spec.rb
|
161
|
-
- spec/unit/braintree/transaction_spec.rb
|
162
|
-
- spec/unit/braintree/payment_method_spec.rb
|
163
|
-
- spec/unit/braintree/credit_card_verification_spec.rb
|
164
|
-
- spec/unit/braintree/configuration_spec.rb
|
165
|
-
- spec/unit/braintree/validation_error_collection_spec.rb
|
166
|
-
- spec/unit/braintree/validation_error_spec.rb
|
167
|
-
- spec/unit/braintree/signature_service_spec.rb
|
168
|
-
- spec/unit/braintree/webhook_notification_spec.rb
|
169
|
-
- spec/unit/braintree/transparent_redirect_spec.rb
|
170
|
-
- spec/unit/braintree/http_spec.rb
|
171
|
-
- spec/unit/braintree/customer_spec.rb
|
172
|
-
- spec/unit/braintree/disbursement_spec.rb
|
173
|
-
- spec/unit/braintree/unknown_payment_method_spec.rb
|
174
|
-
- spec/unit/braintree/base_module_spec.rb
|
175
|
-
- spec/unit/braintree/paypal_account_spec.rb
|
176
|
-
- spec/unit/braintree/transaction_search_spec.rb
|
177
|
-
- spec/unit/braintree/merchant_account_spec.rb
|
178
|
-
- spec/unit/braintree/sha256_digest_spec.rb
|
179
|
-
- spec/unit/braintree/address_spec.rb
|
180
|
-
- spec/unit/spec_helper.rb
|
141
|
+
- spec/hacks/tcp_socket.rb
|
181
142
|
- spec/ssl/certificate.crt
|
182
|
-
- spec/ssl/geotrust_global.crt
|
183
143
|
- spec/ssl/privateKey.key
|
184
|
-
- spec/
|
185
|
-
- spec/hacks/tcp_socket.rb
|
144
|
+
- spec/ssl/geotrust_global.crt
|
186
145
|
- spec/httpsd.pid
|
187
|
-
- spec/
|
188
|
-
- spec/
|
189
|
-
- spec/integration/braintree/
|
190
|
-
- spec/integration/braintree/advanced_search_spec.rb
|
191
|
-
- spec/integration/braintree/test/transaction_amounts_spec.rb
|
146
|
+
- spec/spec.opts
|
147
|
+
- spec/script/httpsd.rb
|
148
|
+
- spec/integration/braintree/http_spec.rb
|
192
149
|
- spec/integration/braintree/coinbase_spec.rb
|
193
|
-
- spec/integration/braintree/subscription_spec.rb
|
194
150
|
- spec/integration/braintree/transaction_spec.rb
|
195
|
-
- spec/integration/braintree/payment_method_spec.rb
|
196
151
|
- spec/integration/braintree/credit_card_verification_spec.rb
|
152
|
+
- spec/integration/braintree/credit_card_spec.rb
|
153
|
+
- spec/integration/braintree/merchant_account_spec.rb
|
154
|
+
- spec/integration/braintree/disbursement_spec.rb
|
155
|
+
- spec/integration/braintree/payment_method_spec.rb
|
156
|
+
- spec/integration/braintree/customer_spec.rb
|
157
|
+
- spec/integration/braintree/error_codes_spec.rb
|
158
|
+
- spec/integration/braintree/payment_method_nonce_spec.rb
|
159
|
+
- spec/integration/braintree/customer_search_spec.rb
|
160
|
+
- spec/integration/braintree/add_on_spec.rb
|
161
|
+
- spec/integration/braintree/transparent_redirect_spec.rb
|
162
|
+
- spec/integration/braintree/address_spec.rb
|
197
163
|
- spec/integration/braintree/client_api/client_token_spec.rb
|
198
164
|
- spec/integration/braintree/client_api/spec_helper.rb
|
199
|
-
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
200
|
-
- spec/integration/braintree/plan_spec.rb
|
201
|
-
- spec/integration/braintree/transparent_redirect_spec.rb
|
202
|
-
- spec/integration/braintree/http_spec.rb
|
203
|
-
- spec/integration/braintree/customer_spec.rb
|
204
|
-
- spec/integration/braintree/disbursement_spec.rb
|
205
|
-
- spec/integration/braintree/test_transaction_spec.rb
|
206
165
|
- spec/integration/braintree/paypal_account_spec.rb
|
166
|
+
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
167
|
+
- spec/integration/braintree/advanced_search_spec.rb
|
168
|
+
- spec/integration/braintree/subscription_spec.rb
|
207
169
|
- spec/integration/braintree/transaction_search_spec.rb
|
208
|
-
- spec/integration/braintree/
|
170
|
+
- spec/integration/braintree/plan_spec.rb
|
209
171
|
- spec/integration/braintree/discount_spec.rb
|
210
|
-
- spec/integration/braintree/
|
211
|
-
- spec/integration/braintree/
|
212
|
-
- spec/integration/braintree/
|
213
|
-
- spec/integration/braintree/payment_method_nonce_spec.rb
|
172
|
+
- spec/integration/braintree/credit_card_verification_search_spec.rb
|
173
|
+
- spec/integration/braintree/test/transaction_amounts_spec.rb
|
174
|
+
- spec/integration/braintree/test_transaction_spec.rb
|
214
175
|
- spec/integration/spec_helper.rb
|
215
|
-
- spec/
|
176
|
+
- spec/spec_helper.rb
|
177
|
+
- spec/unit/braintree/http_spec.rb
|
178
|
+
- spec/unit/braintree/resource_collection_spec.rb
|
179
|
+
- spec/unit/braintree/subscription_search_spec.rb
|
180
|
+
- spec/unit/braintree/sha256_digest_spec.rb
|
181
|
+
- spec/unit/braintree/error_result_spec.rb
|
182
|
+
- spec/unit/braintree/transaction_spec.rb
|
183
|
+
- spec/unit/braintree/validation_error_spec.rb
|
184
|
+
- spec/unit/braintree/dispute_spec.rb
|
185
|
+
- spec/unit/braintree/xml_spec.rb
|
186
|
+
- spec/unit/braintree/credit_card_verification_spec.rb
|
187
|
+
- spec/unit/braintree/credit_card_spec.rb
|
188
|
+
- spec/unit/braintree/merchant_account_spec.rb
|
189
|
+
- spec/unit/braintree/disbursement_spec.rb
|
190
|
+
- spec/unit/braintree/payment_method_spec.rb
|
191
|
+
- spec/unit/braintree/customer_spec.rb
|
192
|
+
- spec/unit/braintree/base_module_spec.rb
|
193
|
+
- spec/unit/braintree/transparent_redirect_spec.rb
|
194
|
+
- spec/unit/braintree/unknown_payment_method_spec.rb
|
195
|
+
- spec/unit/braintree/transaction/credit_card_details_spec.rb
|
196
|
+
- spec/unit/braintree/transaction/deposit_details_spec.rb
|
197
|
+
- spec/unit/braintree/transaction/customer_details_spec.rb
|
198
|
+
- spec/unit/braintree/address_spec.rb
|
199
|
+
- spec/unit/braintree/errors_spec.rb
|
200
|
+
- spec/unit/braintree/util_spec.rb
|
201
|
+
- spec/unit/braintree/signature_service_spec.rb
|
202
|
+
- spec/unit/braintree/paypal_account_spec.rb
|
203
|
+
- spec/unit/braintree/digest_spec.rb
|
204
|
+
- spec/unit/braintree/xml/rexml_spec.rb
|
205
|
+
- spec/unit/braintree/xml/parser_spec.rb
|
206
|
+
- spec/unit/braintree/xml/libxml_spec.rb
|
207
|
+
- spec/unit/braintree/client_token_spec.rb
|
208
|
+
- spec/unit/braintree/webhook_notification_spec.rb
|
209
|
+
- spec/unit/braintree/subscription_spec.rb
|
210
|
+
- spec/unit/braintree/validation_error_collection_spec.rb
|
211
|
+
- spec/unit/braintree/risk_data_spec.rb
|
212
|
+
- spec/unit/braintree/configuration_spec.rb
|
213
|
+
- spec/unit/braintree/transaction_search_spec.rb
|
214
|
+
- spec/unit/braintree/modification_spec.rb
|
215
|
+
- spec/unit/braintree/successful_result_spec.rb
|
216
|
+
- spec/unit/braintree/credit_card_verification_search_spec.rb
|
217
|
+
- spec/unit/braintree_spec.rb
|
218
|
+
- spec/unit/spec_helper.rb
|
216
219
|
- braintree.gemspec
|
217
220
|
homepage: http://www.braintreepayments.com/
|
218
221
|
licenses:
|
219
222
|
- MIT
|
220
|
-
metadata: {}
|
221
223
|
post_install_message:
|
222
224
|
rdoc_options: []
|
223
225
|
require_paths:
|
224
226
|
- lib
|
225
227
|
required_ruby_version: !ruby/object:Gem::Requirement
|
228
|
+
none: false
|
226
229
|
requirements:
|
227
|
-
- - '>='
|
230
|
+
- - ! '>='
|
228
231
|
- !ruby/object:Gem::Version
|
229
232
|
version: '0'
|
230
233
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
234
|
+
none: false
|
231
235
|
requirements:
|
232
|
-
- - '>='
|
236
|
+
- - ! '>='
|
233
237
|
- !ruby/object:Gem::Version
|
234
238
|
version: '0'
|
235
239
|
requirements: []
|
236
240
|
rubyforge_project: braintree
|
237
|
-
rubygems_version:
|
241
|
+
rubygems_version: 1.8.23
|
238
242
|
signing_key:
|
239
|
-
specification_version:
|
243
|
+
specification_version: 3
|
240
244
|
summary: Braintree Gateway Ruby Client Library
|
241
245
|
test_files: []
|