braintree 2.74.0 → 2.75.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/credit_card.rb +1 -0
- data/lib/braintree/customer_gateway.rb +8 -2
- data/lib/braintree/payment_method_gateway.rb +7 -1
- data/lib/braintree/version.rb +1 -1
- data/spec/httpsd.pid +1 -1
- data/spec/integration/braintree/customer_spec.rb +10 -2
- data/spec/integration/braintree/payment_method_spec.rb +4 -0
- data/spec/unit/braintree/customer_spec.rb +2 -2
- metadata +186 -186
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7add957a34ab8172520fbd04d8b0205c9dfb3b1e
|
4
|
+
data.tar.gz: 6d2c78ae970aa3590e43427ddb4412ae3f8c5571
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3432c5ba3ddca0d3284a3565791b4623545a14ce90ca56219ce12fed6ccb7987611f6d0177ab4c10712749e15c830e9d0822406844ad860d924308c86d74c4ab
|
7
|
+
data.tar.gz: 680e39fd812b590489921526c07d5deebc0fdfc3807d8e4e1f3d66ce48e97f50eeff3fed79de73b9d37d35c02f058077a704197b30b47b95d5fbfa011b6f4e9f
|
@@ -75,7 +75,13 @@ module Braintree
|
|
75
75
|
credit_card_signature = CreditCardGateway._create_signature - [:customer_id]
|
76
76
|
paypal_account_signature = PayPalAccountGateway._create_nested_signature
|
77
77
|
options = [
|
78
|
-
:paypal => [
|
78
|
+
:paypal => [
|
79
|
+
:payee_email,
|
80
|
+
:order_id,
|
81
|
+
:custom_field,
|
82
|
+
:description,
|
83
|
+
:amount,
|
84
|
+
],
|
79
85
|
]
|
80
86
|
[
|
81
87
|
:company, :email, :fax, :first_name, :id, :last_name, :phone, :website,
|
@@ -130,7 +136,7 @@ module Braintree
|
|
130
136
|
credit_card_options = credit_card_signature.find { |item| item.respond_to?(:keys) && item.keys == [:options] }
|
131
137
|
credit_card_options[:options] << :update_existing_token
|
132
138
|
options = [
|
133
|
-
:paypal => [:payee_email],
|
139
|
+
:paypal => [:payee_email, :order_id, :custom_field, :description, :amount],
|
134
140
|
]
|
135
141
|
[
|
136
142
|
:company, :email, :fax, :first_name, :id, :last_name, :phone, :website,
|
@@ -151,7 +151,13 @@ module Braintree
|
|
151
151
|
options = [
|
152
152
|
:make_default, :verification_merchant_account_id, :verify_card, :venmo_sdk_session,
|
153
153
|
:verification_amount,
|
154
|
-
:paypal => [
|
154
|
+
:paypal => [
|
155
|
+
:payee_email,
|
156
|
+
:order_id,
|
157
|
+
:custom_field,
|
158
|
+
:description,
|
159
|
+
:amount,
|
160
|
+
],
|
155
161
|
]
|
156
162
|
signature = [
|
157
163
|
:billing_address_id, :cardholder_name, :cvv, :device_session_id, :expiration_date,
|
data/lib/braintree/version.rb
CHANGED
data/spec/httpsd.pid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
26882
|
@@ -1474,7 +1474,7 @@ describe Braintree::Customer do
|
|
1474
1474
|
end
|
1475
1475
|
|
1476
1476
|
context "limited use" do
|
1477
|
-
it "creates a customer with payment_method_nonce and options
|
1477
|
+
it "creates a customer with payment_method_nonce and paypal options" do
|
1478
1478
|
paypal_account_token = "PAYPAL_ACCOUNT_TOKEN_#{rand(36**3).to_s(36)}"
|
1479
1479
|
nonce = nonce_for_paypal_account(
|
1480
1480
|
:consent_code => "PAYPAL_CONSENT_CODE",
|
@@ -1489,6 +1489,10 @@ describe Braintree::Customer do
|
|
1489
1489
|
:options => {
|
1490
1490
|
:paypal => {
|
1491
1491
|
:payee_email => "payee@example.com",
|
1492
|
+
:order_id => "merchant-order-id",
|
1493
|
+
:custom_field => "custom merchant field",
|
1494
|
+
:description => "merchant description",
|
1495
|
+
:amount => "1.23",
|
1492
1496
|
},
|
1493
1497
|
},
|
1494
1498
|
)
|
@@ -1496,7 +1500,7 @@ describe Braintree::Customer do
|
|
1496
1500
|
result.should be_success
|
1497
1501
|
end
|
1498
1502
|
|
1499
|
-
it "updates a customer with payment_method_nonce and options
|
1503
|
+
it "updates a customer with payment_method_nonce and paypal options" do
|
1500
1504
|
customer = Braintree::Customer.create!(
|
1501
1505
|
:credit_card => {
|
1502
1506
|
:number => Braintree::Test::CreditCardNumbers::Visa,
|
@@ -1522,6 +1526,10 @@ describe Braintree::Customer do
|
|
1522
1526
|
:options => {
|
1523
1527
|
:paypal => {
|
1524
1528
|
:payee_email => "payee@example.com",
|
1529
|
+
:order_id => "merchant-order-id",
|
1530
|
+
:custom_field => "custom merchant field",
|
1531
|
+
:description => "merchant description",
|
1532
|
+
:amount => "1.23",
|
1525
1533
|
},
|
1526
1534
|
},
|
1527
1535
|
)
|
@@ -548,6 +548,10 @@ describe Braintree::PaymentMethod do
|
|
548
548
|
:options => {
|
549
549
|
:paypal => {
|
550
550
|
:payee_email => "payee@example.com",
|
551
|
+
:order_id => "merchant-order-id",
|
552
|
+
:custom_field => "custom merchant field",
|
553
|
+
:description => "merchant description",
|
554
|
+
:amount => "1.23",
|
551
555
|
},
|
552
556
|
},
|
553
557
|
)
|
@@ -123,7 +123,7 @@ describe Braintree::Customer do
|
|
123
123
|
:billing_agreement_id,
|
124
124
|
{:options => [:make_default]},
|
125
125
|
]},
|
126
|
-
{:options => [:paypal => [:payee_email]]},
|
126
|
+
{:options => [:paypal => [:payee_email, :order_id, :custom_field, :description, :amount]]},
|
127
127
|
{:custom_fields => :_any_key_}
|
128
128
|
]
|
129
129
|
end
|
@@ -182,7 +182,7 @@ describe Braintree::Customer do
|
|
182
182
|
{:options => [:update_existing]}
|
183
183
|
]}
|
184
184
|
]},
|
185
|
-
{:options => [:paypal => [:payee_email]]},
|
185
|
+
{:options => [:paypal => [:payee_email, :order_id, :custom_field, :description, :amount]]},
|
186
186
|
{:custom_fields => :_any_key_}
|
187
187
|
]
|
188
188
|
end
|
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: braintree
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.75.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Braintree
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: builder
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 2.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 2.0.0
|
27
27
|
description: Ruby library for integrating with the Braintree Gateway
|
@@ -30,228 +30,228 @@ executables: []
|
|
30
30
|
extensions: []
|
31
31
|
extra_rdoc_files: []
|
32
32
|
files:
|
33
|
-
- README.rdoc
|
34
33
|
- LICENSE
|
35
|
-
-
|
36
|
-
-
|
37
|
-
- lib/braintree
|
38
|
-
- lib/braintree/
|
39
|
-
- lib/braintree/
|
40
|
-
- lib/braintree/
|
41
|
-
- lib/braintree/
|
42
|
-
- lib/braintree/
|
43
|
-
- lib/braintree/
|
44
|
-
- lib/braintree/
|
34
|
+
- README.rdoc
|
35
|
+
- braintree.gemspec
|
36
|
+
- lib/braintree.rb
|
37
|
+
- lib/braintree/account_updater_daily_report.rb
|
38
|
+
- lib/braintree/ach_mandate.rb
|
39
|
+
- lib/braintree/add_on.rb
|
40
|
+
- lib/braintree/add_on_gateway.rb
|
41
|
+
- lib/braintree/address.rb
|
42
|
+
- lib/braintree/address/country_names.rb
|
43
|
+
- lib/braintree/address_gateway.rb
|
44
|
+
- lib/braintree/advanced_search.rb
|
45
|
+
- lib/braintree/amex_express_checkout_card.rb
|
45
46
|
- lib/braintree/android_pay_card.rb
|
47
|
+
- lib/braintree/apple_pay_card.rb
|
48
|
+
- lib/braintree/base_module.rb
|
49
|
+
- lib/braintree/client_token.rb
|
50
|
+
- lib/braintree/client_token_gateway.rb
|
51
|
+
- lib/braintree/coinbase_account.rb
|
52
|
+
- lib/braintree/configuration.rb
|
53
|
+
- lib/braintree/connected_merchant_paypal_status_changed.rb
|
54
|
+
- lib/braintree/connected_merchant_status_transitioned.rb
|
55
|
+
- lib/braintree/credentials_parser.rb
|
56
|
+
- lib/braintree/credit_card.rb
|
57
|
+
- lib/braintree/credit_card_gateway.rb
|
58
|
+
- lib/braintree/credit_card_verification.rb
|
46
59
|
- lib/braintree/credit_card_verification_gateway.rb
|
60
|
+
- lib/braintree/credit_card_verification_search.rb
|
61
|
+
- lib/braintree/customer.rb
|
62
|
+
- lib/braintree/customer_gateway.rb
|
63
|
+
- lib/braintree/customer_search.rb
|
64
|
+
- lib/braintree/descriptor.rb
|
65
|
+
- lib/braintree/digest.rb
|
66
|
+
- lib/braintree/disbursement.rb
|
67
|
+
- lib/braintree/discount.rb
|
68
|
+
- lib/braintree/discount_gateway.rb
|
69
|
+
- lib/braintree/dispute.rb
|
47
70
|
- lib/braintree/dispute/transaction_details.rb
|
48
|
-
- lib/braintree/
|
71
|
+
- lib/braintree/error_codes.rb
|
72
|
+
- lib/braintree/error_result.rb
|
73
|
+
- lib/braintree/errors.rb
|
74
|
+
- lib/braintree/europe_bank_account.rb
|
75
|
+
- lib/braintree/europe_bank_account_gateway.rb
|
76
|
+
- lib/braintree/exceptions.rb
|
77
|
+
- lib/braintree/facilitator_details.rb
|
78
|
+
- lib/braintree/gateway.rb
|
49
79
|
- lib/braintree/http.rb
|
50
|
-
- lib/braintree/
|
51
|
-
- lib/braintree/
|
52
|
-
- lib/braintree/
|
53
|
-
- lib/braintree/customer_gateway.rb
|
80
|
+
- lib/braintree/ideal_payment.rb
|
81
|
+
- lib/braintree/ideal_payment_gateway.rb
|
82
|
+
- lib/braintree/masterpass_card.rb
|
54
83
|
- lib/braintree/merchant.rb
|
55
|
-
- lib/braintree/
|
56
|
-
- lib/braintree/
|
57
|
-
- lib/braintree/
|
58
|
-
- lib/braintree/
|
59
|
-
- lib/braintree/
|
60
|
-
- lib/braintree/
|
61
|
-
- lib/braintree/
|
62
|
-
- lib/braintree/
|
63
|
-
- lib/braintree/
|
64
|
-
- lib/braintree/webhook_notification.rb
|
84
|
+
- lib/braintree/merchant_account.rb
|
85
|
+
- lib/braintree/merchant_account/address_details.rb
|
86
|
+
- lib/braintree/merchant_account/business_details.rb
|
87
|
+
- lib/braintree/merchant_account/funding_details.rb
|
88
|
+
- lib/braintree/merchant_account/individual_details.rb
|
89
|
+
- lib/braintree/merchant_account_gateway.rb
|
90
|
+
- lib/braintree/merchant_gateway.rb
|
91
|
+
- lib/braintree/modification.rb
|
92
|
+
- lib/braintree/oauth_credentials.rb
|
65
93
|
- lib/braintree/oauth_gateway.rb
|
66
94
|
- lib/braintree/paginated_collection.rb
|
67
|
-
- lib/braintree/
|
68
|
-
- lib/braintree/
|
69
|
-
- lib/braintree/
|
70
|
-
- lib/braintree/
|
95
|
+
- lib/braintree/paginated_result.rb
|
96
|
+
- lib/braintree/payment_instrument_type.rb
|
97
|
+
- lib/braintree/payment_method.rb
|
98
|
+
- lib/braintree/payment_method_gateway.rb
|
71
99
|
- lib/braintree/payment_method_nonce.rb
|
72
|
-
- lib/braintree/
|
100
|
+
- lib/braintree/payment_method_nonce_gateway.rb
|
101
|
+
- lib/braintree/paypal_account.rb
|
73
102
|
- lib/braintree/paypal_account_gateway.rb
|
103
|
+
- lib/braintree/plan.rb
|
104
|
+
- lib/braintree/plan_gateway.rb
|
74
105
|
- lib/braintree/resource_collection.rb
|
106
|
+
- lib/braintree/risk_data.rb
|
107
|
+
- lib/braintree/settlement_batch.rb
|
75
108
|
- lib/braintree/settlement_batch_summary.rb
|
76
|
-
- lib/braintree/
|
109
|
+
- lib/braintree/settlement_batch_summary_gateway.rb
|
110
|
+
- lib/braintree/sha256_digest.rb
|
111
|
+
- lib/braintree/signature_service.rb
|
112
|
+
- lib/braintree/subscription.rb
|
113
|
+
- lib/braintree/subscription/status_details.rb
|
114
|
+
- lib/braintree/subscription_gateway.rb
|
115
|
+
- lib/braintree/subscription_search.rb
|
116
|
+
- lib/braintree/successful_result.rb
|
117
|
+
- lib/braintree/test/credit_card.rb
|
118
|
+
- lib/braintree/test/merchant_account.rb
|
119
|
+
- lib/braintree/test/nonce.rb
|
120
|
+
- lib/braintree/test/transaction_amounts.rb
|
121
|
+
- lib/braintree/test/venmo_sdk.rb
|
122
|
+
- lib/braintree/test_transaction.rb
|
123
|
+
- lib/braintree/testing_gateway.rb
|
124
|
+
- lib/braintree/three_d_secure_info.rb
|
125
|
+
- lib/braintree/transaction.rb
|
77
126
|
- lib/braintree/transaction/address_details.rb
|
78
|
-
- lib/braintree/transaction/
|
127
|
+
- lib/braintree/transaction/amex_express_checkout_details.rb
|
79
128
|
- lib/braintree/transaction/android_pay_details.rb
|
80
|
-
- lib/braintree/transaction/customer_details.rb
|
81
|
-
- lib/braintree/transaction/masterpass_card_details.rb
|
82
129
|
- lib/braintree/transaction/apple_pay_details.rb
|
130
|
+
- lib/braintree/transaction/coinbase_details.rb
|
131
|
+
- lib/braintree/transaction/credit_card_details.rb
|
132
|
+
- lib/braintree/transaction/customer_details.rb
|
83
133
|
- lib/braintree/transaction/disbursement_details.rb
|
134
|
+
- lib/braintree/transaction/ideal_payment_details.rb
|
135
|
+
- lib/braintree/transaction/masterpass_card_details.rb
|
84
136
|
- lib/braintree/transaction/paypal_details.rb
|
85
|
-
- lib/braintree/transaction/coinbase_details.rb
|
86
137
|
- lib/braintree/transaction/status_details.rb
|
87
|
-
- lib/braintree/transaction/us_bank_account_details.rb
|
88
|
-
- lib/braintree/transaction/amex_express_checkout_details.rb
|
89
138
|
- lib/braintree/transaction/subscription_details.rb
|
90
|
-
- lib/braintree/transaction/
|
91
|
-
- lib/braintree/transaction/
|
92
|
-
- lib/braintree/
|
93
|
-
- lib/braintree/merchant_account/funding_details.rb
|
94
|
-
- lib/braintree/merchant_account/individual_details.rb
|
95
|
-
- lib/braintree/merchant_account/business_details.rb
|
96
|
-
- lib/braintree/europe_bank_account_gateway.rb
|
97
|
-
- lib/braintree/venmo_account.rb
|
98
|
-
- lib/braintree/transaction_search.rb
|
99
|
-
- lib/braintree/coinbase_account.rb
|
100
|
-
- lib/braintree/settlement_batch.rb
|
101
|
-
- lib/braintree/credit_card_verification.rb
|
102
|
-
- lib/braintree/discount.rb
|
103
|
-
- lib/braintree/address.rb
|
104
|
-
- lib/braintree/digest.rb
|
105
|
-
- lib/braintree/ideal_payment_gateway.rb
|
106
|
-
- lib/braintree/disbursement.rb
|
107
|
-
- lib/braintree/test/merchant_account.rb
|
108
|
-
- lib/braintree/test/venmo_sdk.rb
|
109
|
-
- lib/braintree/test/nonce.rb
|
110
|
-
- lib/braintree/test/transaction_amounts.rb
|
111
|
-
- lib/braintree/test/credit_card.rb
|
112
|
-
- lib/braintree/address/country_names.rb
|
113
|
-
- lib/braintree/webhook_testing.rb
|
114
|
-
- lib/braintree/error_result.rb
|
115
|
-
- lib/braintree/paypal_account.rb
|
116
|
-
- lib/braintree/settlement_batch_summary_gateway.rb
|
117
|
-
- lib/braintree/merchant_gateway.rb
|
118
|
-
- lib/braintree/us_bank_account_gateway.rb
|
139
|
+
- lib/braintree/transaction/us_bank_account_details.rb
|
140
|
+
- lib/braintree/transaction/venmo_account_details.rb
|
141
|
+
- lib/braintree/transaction/visa_checkout_card_details.rb
|
119
142
|
- lib/braintree/transaction_gateway.rb
|
120
|
-
- lib/braintree/
|
121
|
-
- lib/braintree/
|
122
|
-
- lib/braintree/subscription/status_details.rb
|
123
|
-
- lib/braintree/payment_method.rb
|
124
|
-
- lib/braintree/subscription_gateway.rb
|
143
|
+
- lib/braintree/transaction_search.rb
|
144
|
+
- lib/braintree/transparent_redirect.rb
|
125
145
|
- lib/braintree/transparent_redirect_gateway.rb
|
126
|
-
- lib/braintree/
|
127
|
-
- lib/braintree/
|
128
|
-
- lib/braintree/
|
129
|
-
- lib/braintree/transaction.rb
|
130
|
-
- lib/braintree/credit_card.rb
|
131
|
-
- lib/braintree/descriptor.rb
|
132
|
-
- lib/braintree/credentials_parser.rb
|
133
|
-
- lib/braintree/address_gateway.rb
|
134
|
-
- lib/braintree/signature_service.rb
|
135
|
-
- lib/braintree/webhook_notification_gateway.rb
|
136
|
-
- lib/braintree/connected_merchant_paypal_status_changed.rb
|
137
|
-
- lib/braintree/account_updater_daily_report.rb
|
138
|
-
- lib/braintree/configuration.rb
|
139
|
-
- lib/braintree/xml/parser.rb
|
140
|
-
- lib/braintree/xml/generator.rb
|
141
|
-
- lib/braintree/xml/rexml.rb
|
142
|
-
- lib/braintree/xml/libxml.rb
|
143
|
-
- lib/braintree/test_transaction.rb
|
144
|
-
- lib/braintree/customer.rb
|
145
|
-
- lib/braintree/base_module.rb
|
146
|
-
- lib/braintree/merchant_account_gateway.rb
|
147
|
-
- lib/braintree/credit_card_gateway.rb
|
148
|
-
- lib/braintree/errors.rb
|
146
|
+
- lib/braintree/unknown_payment_method.rb
|
147
|
+
- lib/braintree/us_bank_account.rb
|
148
|
+
- lib/braintree/us_bank_account_gateway.rb
|
149
149
|
- lib/braintree/util.rb
|
150
|
+
- lib/braintree/validation_error.rb
|
150
151
|
- lib/braintree/validation_error_collection.rb
|
151
|
-
- lib/braintree/
|
152
|
-
- lib/braintree/
|
152
|
+
- lib/braintree/venmo_account.rb
|
153
|
+
- lib/braintree/version.rb
|
153
154
|
- lib/braintree/visa_checkout_card.rb
|
155
|
+
- lib/braintree/webhook_notification.rb
|
156
|
+
- lib/braintree/webhook_notification_gateway.rb
|
157
|
+
- lib/braintree/webhook_testing.rb
|
154
158
|
- lib/braintree/webhook_testing_gateway.rb
|
155
|
-
- lib/braintree/
|
156
|
-
- lib/braintree/
|
157
|
-
- lib/braintree/
|
158
|
-
- lib/braintree/
|
159
|
-
- lib/braintree/
|
160
|
-
- lib/braintree/oauth_credentials.rb
|
161
|
-
- lib/braintree/modification.rb
|
162
|
-
- lib/braintree.rb
|
163
|
-
- lib/ssl/securetrust_ca.crt
|
159
|
+
- lib/braintree/xml.rb
|
160
|
+
- lib/braintree/xml/generator.rb
|
161
|
+
- lib/braintree/xml/libxml.rb
|
162
|
+
- lib/braintree/xml/parser.rb
|
163
|
+
- lib/braintree/xml/rexml.rb
|
164
164
|
- lib/ssl/api_braintreegateway_com.ca.crt
|
165
|
-
-
|
165
|
+
- lib/ssl/securetrust_ca.crt
|
166
166
|
- spec/hacks/tcp_socket.rb
|
167
|
+
- spec/httpsd.pid
|
168
|
+
- spec/integration/braintree/add_on_spec.rb
|
169
|
+
- spec/integration/braintree/address_spec.rb
|
170
|
+
- spec/integration/braintree/advanced_search_spec.rb
|
171
|
+
- spec/integration/braintree/client_api/client_token_spec.rb
|
172
|
+
- spec/integration/braintree/client_api/spec_helper.rb
|
173
|
+
- spec/integration/braintree/coinbase_spec.rb
|
174
|
+
- spec/integration/braintree/credit_card_spec.rb
|
175
|
+
- spec/integration/braintree/credit_card_verification_search_spec.rb
|
176
|
+
- spec/integration/braintree/credit_card_verification_spec.rb
|
177
|
+
- spec/integration/braintree/customer_search_spec.rb
|
178
|
+
- spec/integration/braintree/customer_spec.rb
|
179
|
+
- spec/integration/braintree/disbursement_spec.rb
|
180
|
+
- spec/integration/braintree/discount_spec.rb
|
181
|
+
- spec/integration/braintree/error_codes_spec.rb
|
182
|
+
- spec/integration/braintree/http_spec.rb
|
183
|
+
- spec/integration/braintree/ideal_payment_spec.rb
|
184
|
+
- spec/integration/braintree/masterpass_card_spec.rb
|
185
|
+
- spec/integration/braintree/merchant_account_spec.rb
|
186
|
+
- spec/integration/braintree/merchant_spec.rb
|
187
|
+
- spec/integration/braintree/oauth_spec.rb
|
188
|
+
- spec/integration/braintree/payment_method_nonce_spec.rb
|
189
|
+
- spec/integration/braintree/payment_method_spec.rb
|
190
|
+
- spec/integration/braintree/paypal_account_spec.rb
|
191
|
+
- spec/integration/braintree/plan_spec.rb
|
192
|
+
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
193
|
+
- spec/integration/braintree/subscription_spec.rb
|
194
|
+
- spec/integration/braintree/test/transaction_amounts_spec.rb
|
195
|
+
- spec/integration/braintree/test_transaction_spec.rb
|
196
|
+
- spec/integration/braintree/transaction_search_spec.rb
|
197
|
+
- spec/integration/braintree/transaction_spec.rb
|
198
|
+
- spec/integration/braintree/transparent_redirect_spec.rb
|
199
|
+
- spec/integration/braintree/us_bank_account_spec.rb
|
200
|
+
- spec/integration/braintree/visa_checkout_card_spec.rb
|
201
|
+
- spec/integration/spec_helper.rb
|
202
|
+
- spec/oauth_test_helper.rb
|
167
203
|
- spec/script/httpsd.rb
|
204
|
+
- spec/spec.opts
|
168
205
|
- spec/spec_helper.rb
|
169
|
-
- spec/
|
170
|
-
- spec/
|
171
|
-
- spec/
|
206
|
+
- spec/ssl/certificate.crt
|
207
|
+
- spec/ssl/geotrust_global.crt
|
208
|
+
- spec/ssl/privateKey.key
|
209
|
+
- spec/unit/braintree/address_spec.rb
|
210
|
+
- spec/unit/braintree/apple_pay_card_spec.rb
|
172
211
|
- spec/unit/braintree/base_module_spec.rb
|
173
|
-
- spec/unit/braintree/
|
174
|
-
- spec/unit/braintree/
|
175
|
-
- spec/unit/braintree/
|
176
|
-
- spec/unit/braintree/
|
212
|
+
- spec/unit/braintree/client_token_spec.rb
|
213
|
+
- spec/unit/braintree/configuration_spec.rb
|
214
|
+
- spec/unit/braintree/credentials_parser_spec.rb
|
215
|
+
- spec/unit/braintree/credit_card_spec.rb
|
177
216
|
- spec/unit/braintree/credit_card_verification_search_spec.rb
|
217
|
+
- spec/unit/braintree/credit_card_verification_spec.rb
|
218
|
+
- spec/unit/braintree/customer_spec.rb
|
219
|
+
- spec/unit/braintree/digest_spec.rb
|
178
220
|
- spec/unit/braintree/disbursement_spec.rb
|
179
|
-
- spec/unit/braintree/
|
180
|
-
- spec/unit/braintree/modification_spec.rb
|
181
|
-
- spec/unit/braintree/transaction_spec.rb
|
221
|
+
- spec/unit/braintree/dispute_spec.rb
|
182
222
|
- spec/unit/braintree/error_result_spec.rb
|
223
|
+
- spec/unit/braintree/errors_spec.rb
|
224
|
+
- spec/unit/braintree/http_spec.rb
|
225
|
+
- spec/unit/braintree/merchant_account_spec.rb
|
226
|
+
- spec/unit/braintree/modification_spec.rb
|
227
|
+
- spec/unit/braintree/payment_method_spec.rb
|
183
228
|
- spec/unit/braintree/paypal_account_spec.rb
|
184
|
-
- spec/unit/braintree/
|
185
|
-
- spec/unit/braintree/
|
229
|
+
- spec/unit/braintree/resource_collection_spec.rb
|
230
|
+
- spec/unit/braintree/risk_data_spec.rb
|
231
|
+
- spec/unit/braintree/sha256_digest_spec.rb
|
232
|
+
- spec/unit/braintree/signature_service_spec.rb
|
186
233
|
- spec/unit/braintree/subscription_search_spec.rb
|
234
|
+
- spec/unit/braintree/subscription_spec.rb
|
235
|
+
- spec/unit/braintree/successful_result_spec.rb
|
187
236
|
- spec/unit/braintree/three_d_secure_info_spec.rb
|
237
|
+
- spec/unit/braintree/transaction/credit_card_details_spec.rb
|
188
238
|
- spec/unit/braintree/transaction/customer_details_spec.rb
|
189
239
|
- spec/unit/braintree/transaction/deposit_details_spec.rb
|
190
|
-
- spec/unit/braintree/
|
240
|
+
- spec/unit/braintree/transaction_search_spec.rb
|
241
|
+
- spec/unit/braintree/transaction_spec.rb
|
191
242
|
- spec/unit/braintree/transparent_redirect_spec.rb
|
192
|
-
- spec/unit/braintree/errors_spec.rb
|
193
|
-
- spec/unit/braintree/digest_spec.rb
|
194
|
-
- spec/unit/braintree/http_spec.rb
|
195
|
-
- spec/unit/braintree/successful_result_spec.rb
|
196
|
-
- spec/unit/braintree/util_spec.rb
|
197
|
-
- spec/unit/braintree/validation_error_spec.rb
|
198
|
-
- spec/unit/braintree/sha256_digest_spec.rb
|
199
|
-
- spec/unit/braintree/address_spec.rb
|
200
243
|
- spec/unit/braintree/unknown_payment_method_spec.rb
|
201
|
-
- spec/unit/braintree/credentials_parser_spec.rb
|
202
|
-
- spec/unit/braintree/risk_data_spec.rb
|
203
|
-
- spec/unit/braintree/customer_spec.rb
|
204
|
-
- spec/unit/braintree/xml/parser_spec.rb
|
205
|
-
- spec/unit/braintree/xml/rexml_spec.rb
|
206
|
-
- spec/unit/braintree/xml/libxml_spec.rb
|
207
244
|
- spec/unit/braintree/us_bank_account_spec.rb
|
245
|
+
- spec/unit/braintree/util_spec.rb
|
208
246
|
- spec/unit/braintree/validation_error_collection_spec.rb
|
209
|
-
- spec/unit/braintree/
|
247
|
+
- spec/unit/braintree/validation_error_spec.rb
|
210
248
|
- spec/unit/braintree/webhook_notification_spec.rb
|
211
|
-
- spec/unit/braintree/
|
212
|
-
- spec/unit/braintree/
|
213
|
-
- spec/unit/braintree/
|
214
|
-
- spec/unit/braintree/
|
215
|
-
- spec/
|
216
|
-
- spec/
|
217
|
-
- spec/integration/braintree/subscription_spec.rb
|
218
|
-
- spec/integration/braintree/visa_checkout_card_spec.rb
|
219
|
-
- spec/integration/braintree/credit_card_verification_search_spec.rb
|
220
|
-
- spec/integration/braintree/disbursement_spec.rb
|
221
|
-
- spec/integration/braintree/client_api/spec_helper.rb
|
222
|
-
- spec/integration/braintree/client_api/client_token_spec.rb
|
223
|
-
- spec/integration/braintree/discount_spec.rb
|
224
|
-
- spec/integration/braintree/transaction_spec.rb
|
225
|
-
- spec/integration/braintree/payment_method_nonce_spec.rb
|
226
|
-
- spec/integration/braintree/oauth_spec.rb
|
227
|
-
- spec/integration/braintree/customer_search_spec.rb
|
228
|
-
- spec/integration/braintree/paypal_account_spec.rb
|
229
|
-
- spec/integration/braintree/credit_card_verification_spec.rb
|
230
|
-
- spec/integration/braintree/transparent_redirect_spec.rb
|
231
|
-
- spec/integration/braintree/test_transaction_spec.rb
|
232
|
-
- spec/integration/braintree/http_spec.rb
|
233
|
-
- spec/integration/braintree/test/transaction_amounts_spec.rb
|
234
|
-
- spec/integration/braintree/merchant_spec.rb
|
235
|
-
- spec/integration/braintree/ideal_payment_spec.rb
|
236
|
-
- spec/integration/braintree/address_spec.rb
|
237
|
-
- spec/integration/braintree/advanced_search_spec.rb
|
238
|
-
- spec/integration/braintree/customer_spec.rb
|
239
|
-
- spec/integration/braintree/us_bank_account_spec.rb
|
240
|
-
- spec/integration/braintree/coinbase_spec.rb
|
241
|
-
- spec/integration/braintree/payment_method_spec.rb
|
242
|
-
- spec/integration/braintree/merchant_account_spec.rb
|
243
|
-
- spec/integration/braintree/plan_spec.rb
|
244
|
-
- spec/integration/braintree/masterpass_card_spec.rb
|
245
|
-
- spec/integration/braintree/add_on_spec.rb
|
246
|
-
- spec/integration/braintree/error_codes_spec.rb
|
247
|
-
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
248
|
-
- spec/integration/braintree/credit_card_spec.rb
|
249
|
-
- spec/httpsd.pid
|
250
|
-
- spec/ssl/geotrust_global.crt
|
251
|
-
- spec/ssl/certificate.crt
|
252
|
-
- spec/ssl/privateKey.key
|
253
|
-
- spec/oauth_test_helper.rb
|
254
|
-
- braintree.gemspec
|
249
|
+
- spec/unit/braintree/xml/libxml_spec.rb
|
250
|
+
- spec/unit/braintree/xml/parser_spec.rb
|
251
|
+
- spec/unit/braintree/xml/rexml_spec.rb
|
252
|
+
- spec/unit/braintree/xml_spec.rb
|
253
|
+
- spec/unit/braintree_spec.rb
|
254
|
+
- spec/unit/spec_helper.rb
|
255
255
|
homepage: http://www.braintreepayments.com/
|
256
256
|
licenses:
|
257
257
|
- MIT
|
@@ -262,17 +262,17 @@ require_paths:
|
|
262
262
|
- lib
|
263
263
|
required_ruby_version: !ruby/object:Gem::Requirement
|
264
264
|
requirements:
|
265
|
-
- -
|
265
|
+
- - ">="
|
266
266
|
- !ruby/object:Gem::Version
|
267
267
|
version: '0'
|
268
268
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
269
269
|
requirements:
|
270
|
-
- -
|
270
|
+
- - ">="
|
271
271
|
- !ruby/object:Gem::Version
|
272
272
|
version: '0'
|
273
273
|
requirements: []
|
274
274
|
rubyforge_project: braintree
|
275
|
-
rubygems_version: 2.
|
275
|
+
rubygems_version: 2.4.6
|
276
276
|
signing_key:
|
277
277
|
specification_version: 4
|
278
278
|
summary: Braintree Gateway Ruby Client Library
|