braintree 2.58.0 → 2.59.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/lib/braintree/transaction_gateway.rb +2 -1
- data/lib/braintree/version.rb +1 -1
- data/spec/httpsd.pid +1 -1
- data/spec/integration/braintree/transaction_spec.rb +53 -0
- metadata +161 -161
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
NzNjMjU5ZTQyNTlmM2EzYzk1ODQwMjgxMDRiNWYzMjE2NDZmZWY0Yg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
YWYxMWEzYWE2NmYwNTExZWZjMDNmZGI1NDBjN2MyNmJjMGYzZTBiMA==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
OTYwNGNhMGFhMzUwYTg5MjlkYzk0YTIzMjQyY2M3NjM5OGYzNmJmMTYxM2I4
|
10
|
+
ZjYwNGNlNWNhOGNlNjU1Nzk2Y2EwMmYyNjQ4NjFiM2QyMmY5MjA1YTRjZDc4
|
11
|
+
MDBlNDM3ZjdhMDJkMDk1NWJjYzllZTdiMWM1ZWFiMGZkMDMxMTg=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
ZjA0NmNiN2MxMjBlYjMxNzIxYTVmMjNlYWE1NTA0ZDU4MTVlMjhhZjExYjAy
|
14
|
+
NjM2OTM3YzJlM2Q0OTgwYmViNjIwNmZhN2E3MDZkMTc2NGIzMmFiODc2YTcz
|
15
|
+
NzJkNGU1YzY4OWVlNzAzMGFmYzJlNWQxMWUzZDM2MTlkM2ExYWM=
|
@@ -158,7 +158,8 @@ module Braintree
|
|
158
158
|
{:descriptor => [:name, :phone, :url]},
|
159
159
|
{:paypal_account => [:email, :token, :paypal_data, :payee_email]},
|
160
160
|
{:industry => [:industry_type, {:data => [:folio_number, :check_in_date, :check_out_date, :travel_package, :lodging_check_in_date, :lodging_check_out_date, :departure_date, :lodging_name, :room_rate]}]},
|
161
|
-
{:apple_pay_card => [:number, :cardholder_name, :cryptogram, :expiration_month, :expiration_year]}
|
161
|
+
{:apple_pay_card => [:number, :cardholder_name, :cryptogram, :expiration_month, :expiration_year]},
|
162
|
+
{:android_pay_card => [:number, :cryptogram, :google_transaction_id, :expiration_month, :expiration_year, :source_card_type, :source_card_last_four, :eci_indicator]}
|
162
163
|
]
|
163
164
|
end
|
164
165
|
|
data/lib/braintree/version.rb
CHANGED
data/spec/httpsd.pid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
31643
|
@@ -2388,6 +2388,59 @@ describe Braintree::Transaction do
|
|
2388
2388
|
}
|
2389
2389
|
result = Braintree::Transaction.sale(params)
|
2390
2390
|
result.success?.should == true
|
2391
|
+
result.transaction.status.should == Braintree::Transaction::Status::Authorized
|
2392
|
+
end
|
2393
|
+
|
2394
|
+
context "Android Pay params" do
|
2395
|
+
it "works with full params" do
|
2396
|
+
params = {
|
2397
|
+
:amount => "3.12",
|
2398
|
+
:android_pay_card => {
|
2399
|
+
:number => "4012888888881881",
|
2400
|
+
:cryptogram => "AAAAAAAA/COBt84dnIEcwAA3gAAGhgEDoLABAAhAgAABAAAALnNCLw==",
|
2401
|
+
:google_transaction_id => "25469d622c1dd37cb1a403c6d438e850",
|
2402
|
+
:expiration_month => "10",
|
2403
|
+
:expiration_year => "14",
|
2404
|
+
:source_card_type => "Visa",
|
2405
|
+
:source_card_last_four => "1111",
|
2406
|
+
:eci_indicator => "05",
|
2407
|
+
}
|
2408
|
+
}
|
2409
|
+
result = Braintree::Transaction.sale(params)
|
2410
|
+
result.success?.should == true
|
2411
|
+
result.transaction.status.should == Braintree::Transaction::Status::Authorized
|
2412
|
+
end
|
2413
|
+
|
2414
|
+
it "works with only number, cryptogram, expiration and transaction ID (network tokenized card)" do
|
2415
|
+
params = {
|
2416
|
+
:amount => "3.12",
|
2417
|
+
:android_pay_card => {
|
2418
|
+
:number => "4012888888881881",
|
2419
|
+
:cryptogram => "AAAAAAAA/COBt84dnIEcwAA3gAAGhgEDoLABAAhAgAABAAAALnNCLw==",
|
2420
|
+
:google_transaction_id => "25469d622c1dd37cb1a403c6d438e850",
|
2421
|
+
:expiration_month => "10",
|
2422
|
+
:expiration_year => "14",
|
2423
|
+
}
|
2424
|
+
}
|
2425
|
+
result = Braintree::Transaction.sale(params)
|
2426
|
+
result.success?.should == true
|
2427
|
+
result.transaction.status.should == Braintree::Transaction::Status::Authorized
|
2428
|
+
end
|
2429
|
+
|
2430
|
+
it "works with only number, expiration and transaction ID (non-tokenized card)" do
|
2431
|
+
params = {
|
2432
|
+
:amount => "3.12",
|
2433
|
+
:android_pay_card => {
|
2434
|
+
:number => "4012888888881881",
|
2435
|
+
:google_transaction_id => "25469d622c1dd37cb1a403c6d438e850",
|
2436
|
+
:expiration_month => "10",
|
2437
|
+
:expiration_year => "14",
|
2438
|
+
}
|
2439
|
+
}
|
2440
|
+
result = Braintree::Transaction.sale(params)
|
2441
|
+
result.success?.should == true
|
2442
|
+
result.transaction.status.should == Braintree::Transaction::Status::Authorized
|
2443
|
+
end
|
2391
2444
|
end
|
2392
2445
|
|
2393
2446
|
context "Amex Pay with Points" do
|
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.59.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-03-18 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
|
@@ -32,205 +32,205 @@ extra_rdoc_files: []
|
|
32
32
|
files:
|
33
33
|
- README.rdoc
|
34
34
|
- LICENSE
|
35
|
-
- lib/braintree.rb
|
36
|
-
- lib/braintree/
|
37
|
-
- lib/braintree/
|
38
|
-
- lib/braintree/
|
39
|
-
- lib/braintree/
|
35
|
+
- lib/braintree/amex_express_checkout_card.rb
|
36
|
+
- lib/braintree/android_pay_card.rb
|
37
|
+
- lib/braintree/merchant_account.rb
|
38
|
+
- lib/braintree/payment_method_nonce_gateway.rb
|
39
|
+
- lib/braintree/plan_gateway.rb
|
40
|
+
- lib/braintree/paypal_account.rb
|
41
|
+
- lib/braintree/facilitator_details.rb
|
42
|
+
- lib/braintree/modification.rb
|
43
|
+
- lib/braintree/sha256_digest.rb
|
44
|
+
- lib/braintree/validation_error_collection.rb
|
45
|
+
- lib/braintree/transparent_redirect.rb
|
46
|
+
- lib/braintree/customer_search.rb
|
47
|
+
- lib/braintree/europe_bank_account_gateway.rb
|
48
|
+
- lib/braintree/base_module.rb
|
49
|
+
- lib/braintree/dispute.rb
|
40
50
|
- lib/braintree/descriptor.rb
|
41
|
-
- lib/braintree/
|
42
|
-
- lib/braintree/
|
43
|
-
- lib/braintree/
|
44
|
-
- lib/braintree/
|
51
|
+
- lib/braintree/payment_instrument_type.rb
|
52
|
+
- lib/braintree/xml/generator.rb
|
53
|
+
- lib/braintree/xml/parser.rb
|
54
|
+
- lib/braintree/xml/rexml.rb
|
55
|
+
- lib/braintree/xml/libxml.rb
|
56
|
+
- lib/braintree/address/country_names.rb
|
57
|
+
- lib/braintree/credentials_parser.rb
|
58
|
+
- lib/braintree/credit_card_gateway.rb
|
59
|
+
- lib/braintree/settlement_batch_summary.rb
|
60
|
+
- lib/braintree/customer.rb
|
61
|
+
- lib/braintree/merchant_gateway.rb
|
62
|
+
- lib/braintree/plan.rb
|
63
|
+
- lib/braintree/discount_gateway.rb
|
64
|
+
- lib/braintree/address_gateway.rb
|
65
|
+
- lib/braintree/gateway.rb
|
66
|
+
- lib/braintree/credit_card_verification.rb
|
67
|
+
- lib/braintree/oauth_credentials.rb
|
68
|
+
- lib/braintree/transaction.rb
|
69
|
+
- lib/braintree/credit_card_verification_search.rb
|
70
|
+
- lib/braintree/configuration.rb
|
71
|
+
- lib/braintree/settlement_batch.rb
|
45
72
|
- lib/braintree/merchant_account_gateway.rb
|
46
|
-
- lib/braintree/
|
73
|
+
- lib/braintree/dispute/transaction_details.rb
|
47
74
|
- lib/braintree/subscription/status_details.rb
|
48
|
-
- lib/braintree/
|
75
|
+
- lib/braintree/webhook_notification_gateway.rb
|
76
|
+
- lib/braintree/advanced_search.rb
|
77
|
+
- lib/braintree/credit_card_verification_gateway.rb
|
78
|
+
- lib/braintree/version.rb
|
49
79
|
- lib/braintree/add_on.rb
|
80
|
+
- lib/braintree/settlement_batch_summary_gateway.rb
|
81
|
+
- lib/braintree/europe_bank_account.rb
|
82
|
+
- lib/braintree/error_result.rb
|
83
|
+
- lib/braintree/subscription.rb
|
84
|
+
- lib/braintree/payment_method_nonce.rb
|
85
|
+
- lib/braintree/signature_service.rb
|
50
86
|
- lib/braintree/validation_error.rb
|
51
|
-
- lib/braintree/
|
87
|
+
- lib/braintree/testing_gateway.rb
|
88
|
+
- lib/braintree/webhook_testing_gateway.rb
|
89
|
+
- lib/braintree/webhook_testing.rb
|
90
|
+
- lib/braintree/test/merchant_account.rb
|
91
|
+
- lib/braintree/test/transaction_amounts.rb
|
92
|
+
- lib/braintree/test/nonce.rb
|
93
|
+
- lib/braintree/test/credit_card.rb
|
94
|
+
- lib/braintree/test/venmo_sdk.rb
|
95
|
+
- lib/braintree/disbursement.rb
|
96
|
+
- lib/braintree/payment_method_gateway.rb
|
97
|
+
- lib/braintree/account_updater_daily_report.rb
|
98
|
+
- lib/braintree/address.rb
|
99
|
+
- lib/braintree/apple_pay_card.rb
|
100
|
+
- lib/braintree/client_token_gateway.rb
|
101
|
+
- lib/braintree/successful_result.rb
|
102
|
+
- lib/braintree/digest.rb
|
103
|
+
- lib/braintree/coinbase_account.rb
|
52
104
|
- lib/braintree/oauth_gateway.rb
|
53
|
-
- lib/braintree/
|
54
|
-
- lib/braintree/
|
55
|
-
- lib/braintree/
|
56
|
-
- lib/braintree/venmo_account.rb
|
105
|
+
- lib/braintree/resource_collection.rb
|
106
|
+
- lib/braintree/util.rb
|
107
|
+
- lib/braintree/paypal_account_gateway.rb
|
57
108
|
- lib/braintree/discount.rb
|
58
|
-
- lib/braintree/
|
59
|
-
- lib/braintree/
|
109
|
+
- lib/braintree/exceptions.rb
|
110
|
+
- lib/braintree/merchant.rb
|
111
|
+
- lib/braintree/add_on_gateway.rb
|
112
|
+
- lib/braintree/client_token.rb
|
60
113
|
- lib/braintree/merchant_account/address_details.rb
|
61
114
|
- lib/braintree/merchant_account/individual_details.rb
|
115
|
+
- lib/braintree/merchant_account/business_details.rb
|
62
116
|
- lib/braintree/merchant_account/funding_details.rb
|
63
|
-
- lib/braintree/
|
64
|
-
- lib/braintree/address.rb
|
65
|
-
- lib/braintree/webhook_testing_gateway.rb
|
66
|
-
- lib/braintree/transaction_search.rb
|
67
|
-
- lib/braintree/risk_data.rb
|
68
|
-
- lib/braintree/transparent_redirect.rb
|
69
|
-
- lib/braintree/digest.rb
|
70
|
-
- lib/braintree/plan.rb
|
71
|
-
- lib/braintree/oauth_credentials.rb
|
72
|
-
- lib/braintree/resource_collection.rb
|
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
|
84
|
-
- lib/braintree/xml/libxml.rb
|
85
|
-
- lib/braintree/xml/generator.rb
|
86
|
-
- lib/braintree/xml/parser.rb
|
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
|
117
|
+
- lib/braintree/xml.rb
|
94
118
|
- lib/braintree/subscription_gateway.rb
|
95
|
-
- lib/braintree/
|
96
|
-
- lib/braintree/
|
97
|
-
- lib/braintree/
|
98
|
-
- lib/braintree/webhook_notification.rb
|
99
|
-
- lib/braintree/disbursement.rb
|
100
|
-
- lib/braintree/http.rb
|
101
|
-
- lib/braintree/webhook_testing.rb
|
119
|
+
- lib/braintree/subscription_search.rb
|
120
|
+
- lib/braintree/venmo_account.rb
|
121
|
+
- lib/braintree/risk_data.rb
|
102
122
|
- 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
|
108
|
-
- lib/braintree/modification.rb
|
109
|
-
- lib/braintree/transaction_gateway.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
|
116
|
-
- lib/braintree/transaction/coinbase_details.rb
|
117
|
-
- lib/braintree/transaction/paypal_details.rb
|
118
|
-
- lib/braintree/transaction/customer_details.rb
|
119
123
|
- lib/braintree/transaction/address_details.rb
|
124
|
+
- lib/braintree/transaction/venmo_account_details.rb
|
125
|
+
- lib/braintree/transaction/paypal_details.rb
|
126
|
+
- lib/braintree/transaction/amex_express_checkout_details.rb
|
127
|
+
- lib/braintree/transaction/status_details.rb
|
120
128
|
- lib/braintree/transaction/disbursement_details.rb
|
121
|
-
- lib/braintree/transaction/subscription_details.rb
|
122
|
-
- lib/braintree/transaction/apple_pay_details.rb
|
123
129
|
- lib/braintree/transaction/android_pay_details.rb
|
124
|
-
- lib/braintree/transaction/
|
130
|
+
- lib/braintree/transaction/apple_pay_details.rb
|
131
|
+
- lib/braintree/transaction/customer_details.rb
|
132
|
+
- lib/braintree/transaction/coinbase_details.rb
|
133
|
+
- lib/braintree/transaction/subscription_details.rb
|
125
134
|
- lib/braintree/transaction/credit_card_details.rb
|
126
|
-
- lib/braintree/
|
127
|
-
- lib/braintree/
|
128
|
-
- lib/braintree/
|
129
|
-
- 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/transaction_search.rb
|
136
|
+
- lib/braintree/error_codes.rb
|
137
|
+
- lib/braintree/credit_card.rb
|
138
|
+
- lib/braintree/errors.rb
|
135
139
|
- lib/braintree/customer_gateway.rb
|
136
|
-
- lib/braintree/
|
137
|
-
- lib/braintree/
|
138
|
-
- lib/braintree/
|
139
|
-
- lib/braintree/test/nonce.rb
|
140
|
-
- lib/braintree/test/transaction_amounts.rb
|
141
|
-
- lib/braintree/test/merchant_account.rb
|
142
|
-
- lib/braintree/amex_express_checkout_card.rb
|
143
|
-
- lib/braintree/gateway.rb
|
144
|
-
- lib/braintree/address/country_names.rb
|
145
|
-
- lib/braintree/credentials_parser.rb
|
146
|
-
- lib/braintree/settlement_batch_summary.rb
|
140
|
+
- lib/braintree/transparent_redirect_gateway.rb
|
141
|
+
- lib/braintree/http.rb
|
142
|
+
- lib/braintree/test_transaction.rb
|
147
143
|
- lib/braintree/payment_method.rb
|
144
|
+
- lib/braintree/transaction_gateway.rb
|
145
|
+
- lib/braintree/webhook_notification.rb
|
146
|
+
- lib/braintree/three_d_secure_info.rb
|
147
|
+
- lib/braintree.rb
|
148
148
|
- lib/ssl/api_braintreegateway_com.ca.crt
|
149
149
|
- lib/ssl/securetrust_ca.crt
|
150
|
-
- spec/
|
151
|
-
- spec/
|
152
|
-
- spec/
|
153
|
-
- spec/
|
154
|
-
- spec/unit/braintree/
|
155
|
-
- spec/unit/braintree/
|
150
|
+
- spec/unit/braintree/customer_spec.rb
|
151
|
+
- spec/unit/braintree/error_result_spec.rb
|
152
|
+
- spec/unit/braintree/sha256_digest_spec.rb
|
153
|
+
- spec/unit/braintree/base_module_spec.rb
|
154
|
+
- spec/unit/braintree/successful_result_spec.rb
|
155
|
+
- spec/unit/braintree/http_spec.rb
|
156
|
+
- spec/unit/braintree/merchant_account_spec.rb
|
157
|
+
- spec/unit/braintree/subscription_spec.rb
|
156
158
|
- spec/unit/braintree/risk_data_spec.rb
|
157
|
-
- spec/unit/braintree/
|
158
|
-
- spec/unit/braintree/
|
159
|
-
- spec/unit/braintree/
|
159
|
+
- spec/unit/braintree/resource_collection_spec.rb
|
160
|
+
- spec/unit/braintree/transparent_redirect_spec.rb
|
161
|
+
- spec/unit/braintree/dispute_spec.rb
|
162
|
+
- spec/unit/braintree/credit_card_verification_search_spec.rb
|
160
163
|
- spec/unit/braintree/payment_method_spec.rb
|
164
|
+
- spec/unit/braintree/xml/rexml_spec.rb
|
165
|
+
- spec/unit/braintree/xml/parser_spec.rb
|
166
|
+
- spec/unit/braintree/xml/libxml_spec.rb
|
167
|
+
- spec/unit/braintree/credit_card_verification_spec.rb
|
168
|
+
- spec/unit/braintree/signature_service_spec.rb
|
161
169
|
- spec/unit/braintree/transaction_spec.rb
|
170
|
+
- spec/unit/braintree/digest_spec.rb
|
162
171
|
- spec/unit/braintree/address_spec.rb
|
163
|
-
- spec/unit/braintree/
|
164
|
-
- spec/unit/braintree/util_spec.rb
|
165
|
-
- spec/unit/braintree/transparent_redirect_spec.rb
|
172
|
+
- spec/unit/braintree/configuration_spec.rb
|
166
173
|
- spec/unit/braintree/modification_spec.rb
|
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
|
171
|
-
- spec/unit/braintree/xml_spec.rb
|
172
174
|
- spec/unit/braintree/validation_error_spec.rb
|
173
|
-
- spec/unit/braintree/
|
174
|
-
- spec/unit/braintree/
|
175
|
-
- spec/unit/braintree/
|
176
|
-
- spec/unit/braintree/
|
177
|
-
- spec/unit/braintree/
|
178
|
-
- spec/unit/braintree/
|
175
|
+
- spec/unit/braintree/unknown_payment_method_spec.rb
|
176
|
+
- spec/unit/braintree/webhook_notification_spec.rb
|
177
|
+
- spec/unit/braintree/client_token_spec.rb
|
178
|
+
- spec/unit/braintree/credit_card_spec.rb
|
179
|
+
- spec/unit/braintree/util_spec.rb
|
180
|
+
- spec/unit/braintree/credentials_parser_spec.rb
|
179
181
|
- spec/unit/braintree/errors_spec.rb
|
180
|
-
- spec/unit/braintree/
|
181
|
-
- spec/unit/braintree/
|
182
|
-
- spec/unit/braintree/signature_service_spec.rb
|
183
|
-
- spec/unit/braintree/customer_spec.rb
|
182
|
+
- spec/unit/braintree/subscription_search_spec.rb
|
183
|
+
- spec/unit/braintree/disbursement_spec.rb
|
184
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
|
188
185
|
- spec/unit/braintree/transaction/deposit_details_spec.rb
|
189
186
|
- spec/unit/braintree/transaction/credit_card_details_spec.rb
|
190
187
|
- spec/unit/braintree/transaction/customer_details_spec.rb
|
191
188
|
- spec/unit/braintree/validation_error_collection_spec.rb
|
192
|
-
- spec/unit/braintree/
|
193
|
-
- spec/unit/braintree/
|
194
|
-
- spec/unit/braintree/
|
195
|
-
- spec/unit/braintree/
|
196
|
-
- spec/unit/braintree/credentials_parser_spec.rb
|
189
|
+
- spec/unit/braintree/apple_pay_card_spec.rb
|
190
|
+
- spec/unit/braintree/xml_spec.rb
|
191
|
+
- spec/unit/braintree/paypal_account_spec.rb
|
192
|
+
- spec/unit/braintree/three_d_secure_info_spec.rb
|
197
193
|
- spec/unit/braintree_spec.rb
|
198
194
|
- spec/unit/spec_helper.rb
|
199
|
-
- spec/
|
200
|
-
- spec/
|
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
|
195
|
+
- spec/integration/braintree/add_on_spec.rb
|
196
|
+
- spec/integration/braintree/customer_spec.rb
|
214
197
|
- spec/integration/braintree/http_spec.rb
|
215
198
|
- spec/integration/braintree/merchant_account_spec.rb
|
216
|
-
- spec/integration/braintree/customer_spec.rb
|
217
|
-
- spec/integration/braintree/transaction_search_spec.rb
|
218
199
|
- spec/integration/braintree/subscription_spec.rb
|
219
|
-
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
220
|
-
- spec/integration/braintree/oauth_spec.rb
|
221
200
|
- spec/integration/braintree/payment_method_nonce_spec.rb
|
201
|
+
- spec/integration/braintree/transparent_redirect_spec.rb
|
202
|
+
- spec/integration/braintree/credit_card_verification_search_spec.rb
|
203
|
+
- spec/integration/braintree/payment_method_spec.rb
|
204
|
+
- spec/integration/braintree/credit_card_verification_spec.rb
|
205
|
+
- spec/integration/braintree/transaction_spec.rb
|
206
|
+
- spec/integration/braintree/client_api/client_token_spec.rb
|
207
|
+
- spec/integration/braintree/client_api/spec_helper.rb
|
208
|
+
- spec/integration/braintree/address_spec.rb
|
209
|
+
- spec/integration/braintree/merchant_spec.rb
|
210
|
+
- spec/integration/braintree/error_codes_spec.rb
|
211
|
+
- spec/integration/braintree/customer_search_spec.rb
|
212
|
+
- spec/integration/braintree/test/transaction_amounts_spec.rb
|
213
|
+
- spec/integration/braintree/credit_card_spec.rb
|
222
214
|
- spec/integration/braintree/advanced_search_spec.rb
|
223
|
-
- spec/integration/braintree/
|
215
|
+
- spec/integration/braintree/plan_spec.rb
|
224
216
|
- spec/integration/braintree/test_transaction_spec.rb
|
225
|
-
- spec/integration/braintree/
|
217
|
+
- spec/integration/braintree/coinbase_spec.rb
|
218
|
+
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
226
219
|
- spec/integration/braintree/discount_spec.rb
|
227
|
-
- spec/integration/braintree/customer_search_spec.rb
|
228
|
-
- spec/integration/braintree/add_on_spec.rb
|
229
220
|
- spec/integration/braintree/disbursement_spec.rb
|
230
|
-
- spec/integration/braintree/
|
231
|
-
- spec/integration/braintree/
|
221
|
+
- spec/integration/braintree/transaction_search_spec.rb
|
222
|
+
- spec/integration/braintree/paypal_account_spec.rb
|
223
|
+
- spec/integration/braintree/oauth_spec.rb
|
232
224
|
- spec/integration/spec_helper.rb
|
225
|
+
- spec/oauth_test_helper.rb
|
226
|
+
- spec/ssl/privateKey.key
|
227
|
+
- spec/ssl/geotrust_global.crt
|
228
|
+
- spec/ssl/certificate.crt
|
229
|
+
- spec/hacks/tcp_socket.rb
|
230
|
+
- spec/script/httpsd.rb
|
231
|
+
- spec/httpsd.pid
|
233
232
|
- spec/spec_helper.rb
|
233
|
+
- spec/spec.opts
|
234
234
|
- braintree.gemspec
|
235
235
|
homepage: http://www.braintreepayments.com/
|
236
236
|
licenses:
|
@@ -242,12 +242,12 @@ require_paths:
|
|
242
242
|
- lib
|
243
243
|
required_ruby_version: !ruby/object:Gem::Requirement
|
244
244
|
requirements:
|
245
|
-
- - '>='
|
245
|
+
- - ! '>='
|
246
246
|
- !ruby/object:Gem::Version
|
247
247
|
version: '0'
|
248
248
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
249
249
|
requirements:
|
250
|
-
- - '>='
|
250
|
+
- - ! '>='
|
251
251
|
- !ruby/object:Gem::Version
|
252
252
|
version: '0'
|
253
253
|
requirements: []
|