braintree 2.68.0 → 2.68.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/braintree/version.rb +1 -1
- data/spec/client.sh +2 -1
- data/spec/httpsd.pid +1 -1
- data/spec/integration/braintree/client_api/spec_helper.rb +5 -2
- metadata +171 -171
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65b6525c6577f8e5af57ea8e755f2947c1b7a44b
|
4
|
+
data.tar.gz: 32f568060c52eb151dc2615699d54f7827067f7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb27975b62a6215eb9d68321d90ff230761385442eae413eaca11cb42fec238d59c374efa05303a6aea54e279556c506c2a05474fc157b4d14294c37421d588b
|
7
|
+
data.tar.gz: c6e38826e529619914bf6516d88b085ed04ee02dc86609a30462e278715e6f2c88c5c67f58cdbcf086bcb3a756663f6b23b5cfc5796d9ad7522c769865b29094
|
data/lib/braintree/version.rb
CHANGED
data/spec/client.sh
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
set -e
|
3
3
|
|
4
4
|
access_token="integratexxxxxx_xxxxxx_xxxxxx_xxxxxx_xx1"
|
5
|
+
url=$1
|
5
6
|
|
6
7
|
params="{
|
7
8
|
\"type\": \"us_bank_account\",
|
@@ -25,7 +26,7 @@ output=`curl -s -H "Content-type: application/json"\
|
|
25
26
|
-H "Braintree-Version: 2015-11-01"\
|
26
27
|
-H "Authorization: Bearer $access_token"\
|
27
28
|
-d "$params"\
|
28
|
-
-XPost "
|
29
|
+
-XPost "$url"`
|
29
30
|
|
30
31
|
token=$(echo $output | ruby -e 'require "json";input=JSON.parse(STDIN.read);puts(input["data"]["id"])')
|
31
32
|
echo $token
|
data/spec/httpsd.pid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
1554
|
@@ -56,8 +56,11 @@ def nonce_for_paypal_account(paypal_account_details)
|
|
56
56
|
body["paypalAccounts"][0]["nonce"]
|
57
57
|
end
|
58
58
|
|
59
|
-
def generate_valid_us_bank_account_nonce
|
60
|
-
|
59
|
+
def generate_valid_us_bank_account_nonce()
|
60
|
+
raw_client_token = Braintree::ClientToken.generate
|
61
|
+
client_token = decode_client_token(raw_client_token)
|
62
|
+
url = client_token["braintree_api"]["url"]
|
63
|
+
out = `./spec/client.sh #{url}/tokens`
|
61
64
|
out.strip
|
62
65
|
end
|
63
66
|
|
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.68.
|
4
|
+
version: 2.68.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Braintree
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-10-
|
11
|
+
date: 2016-10-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,213 +30,213 @@ executables: []
|
|
30
30
|
extensions: []
|
31
31
|
extra_rdoc_files: []
|
32
32
|
files:
|
33
|
-
- LICENSE
|
34
33
|
- README.rdoc
|
35
|
-
-
|
36
|
-
- lib/braintree.rb
|
37
|
-
- lib/braintree/
|
38
|
-
- lib/braintree/add_on.rb
|
39
|
-
- lib/braintree/add_on_gateway.rb
|
40
|
-
- lib/braintree/address.rb
|
41
|
-
- lib/braintree/address/country_names.rb
|
42
|
-
- lib/braintree/address_gateway.rb
|
43
|
-
- lib/braintree/advanced_search.rb
|
44
|
-
- lib/braintree/amex_express_checkout_card.rb
|
45
|
-
- lib/braintree/android_pay_card.rb
|
46
|
-
- lib/braintree/apple_pay_card.rb
|
47
|
-
- lib/braintree/base_module.rb
|
48
|
-
- lib/braintree/client_token.rb
|
49
|
-
- lib/braintree/client_token_gateway.rb
|
50
|
-
- lib/braintree/coinbase_account.rb
|
51
|
-
- lib/braintree/configuration.rb
|
52
|
-
- lib/braintree/credentials_parser.rb
|
34
|
+
- LICENSE
|
35
|
+
- lib/braintree/xml.rb
|
36
|
+
- lib/braintree/disbursement.rb
|
53
37
|
- lib/braintree/credit_card.rb
|
54
|
-
- lib/braintree/
|
55
|
-
- lib/braintree/
|
38
|
+
- lib/braintree/subscription/status_details.rb
|
39
|
+
- lib/braintree/payment_method_nonce.rb
|
40
|
+
- lib/braintree/error_codes.rb
|
41
|
+
- lib/braintree/client_token_gateway.rb
|
56
42
|
- lib/braintree/credit_card_verification_gateway.rb
|
57
|
-
- lib/braintree/
|
58
|
-
- lib/braintree/customer.rb
|
59
|
-
- lib/braintree/customer_gateway.rb
|
43
|
+
- lib/braintree/payment_method.rb
|
60
44
|
- lib/braintree/customer_search.rb
|
61
|
-
- lib/braintree/descriptor.rb
|
62
|
-
- lib/braintree/digest.rb
|
63
|
-
- lib/braintree/disbursement.rb
|
64
|
-
- lib/braintree/discount.rb
|
65
45
|
- lib/braintree/discount_gateway.rb
|
66
|
-
- lib/braintree/
|
67
|
-
- lib/braintree/
|
68
|
-
- lib/braintree/error_codes.rb
|
69
|
-
- lib/braintree/error_result.rb
|
70
|
-
- lib/braintree/errors.rb
|
71
|
-
- lib/braintree/europe_bank_account.rb
|
72
|
-
- lib/braintree/europe_bank_account_gateway.rb
|
73
|
-
- lib/braintree/exceptions.rb
|
74
|
-
- lib/braintree/facilitator_details.rb
|
75
|
-
- lib/braintree/gateway.rb
|
76
|
-
- lib/braintree/http.rb
|
77
|
-
- lib/braintree/merchant.rb
|
78
|
-
- lib/braintree/merchant_account.rb
|
79
|
-
- lib/braintree/merchant_account/address_details.rb
|
80
|
-
- lib/braintree/merchant_account/business_details.rb
|
81
|
-
- lib/braintree/merchant_account/funding_details.rb
|
82
|
-
- lib/braintree/merchant_account/individual_details.rb
|
83
|
-
- lib/braintree/merchant_account_gateway.rb
|
84
|
-
- lib/braintree/merchant_gateway.rb
|
85
|
-
- lib/braintree/modification.rb
|
86
|
-
- lib/braintree/oauth_credentials.rb
|
87
|
-
- lib/braintree/oauth_gateway.rb
|
88
|
-
- lib/braintree/payment_instrument_type.rb
|
89
|
-
- lib/braintree/payment_method.rb
|
90
|
-
- lib/braintree/payment_method_gateway.rb
|
91
|
-
- lib/braintree/payment_method_nonce.rb
|
92
|
-
- lib/braintree/payment_method_nonce_gateway.rb
|
93
|
-
- lib/braintree/paypal_account.rb
|
94
|
-
- lib/braintree/paypal_account_gateway.rb
|
95
|
-
- lib/braintree/plan.rb
|
46
|
+
- lib/braintree/transaction_search.rb
|
47
|
+
- lib/braintree/us_bank_account.rb
|
96
48
|
- lib/braintree/plan_gateway.rb
|
97
|
-
- lib/braintree/
|
98
|
-
- lib/braintree/
|
99
|
-
- lib/braintree/
|
100
|
-
- lib/braintree/
|
101
|
-
- lib/braintree/
|
102
|
-
- lib/braintree/
|
103
|
-
- lib/braintree/signature_service.rb
|
104
|
-
- lib/braintree/subscription.rb
|
105
|
-
- lib/braintree/subscription/status_details.rb
|
106
|
-
- lib/braintree/subscription_gateway.rb
|
107
|
-
- lib/braintree/subscription_search.rb
|
108
|
-
- lib/braintree/successful_result.rb
|
49
|
+
- lib/braintree/util.rb
|
50
|
+
- lib/braintree/paypal_account.rb
|
51
|
+
- lib/braintree/advanced_search.rb
|
52
|
+
- lib/braintree/descriptor.rb
|
53
|
+
- lib/braintree/android_pay_card.rb
|
54
|
+
- lib/braintree/transparent_redirect.rb
|
109
55
|
- lib/braintree/test/credit_card.rb
|
110
|
-
- lib/braintree/test/merchant_account.rb
|
111
56
|
- lib/braintree/test/nonce.rb
|
112
|
-
- lib/braintree/test/transaction_amounts.rb
|
113
57
|
- lib/braintree/test/venmo_sdk.rb
|
58
|
+
- lib/braintree/test/transaction_amounts.rb
|
59
|
+
- lib/braintree/test/merchant_account.rb
|
60
|
+
- lib/braintree/three_d_secure_info.rb
|
61
|
+
- lib/braintree/base_module.rb
|
62
|
+
- lib/braintree/credentials_parser.rb
|
63
|
+
- lib/braintree/account_updater_daily_report.rb
|
64
|
+
- lib/braintree/digest.rb
|
65
|
+
- lib/braintree/settlement_batch_summary_gateway.rb
|
114
66
|
- lib/braintree/test_transaction.rb
|
67
|
+
- lib/braintree/subscription.rb
|
68
|
+
- lib/braintree/credit_card_gateway.rb
|
69
|
+
- lib/braintree/venmo_account.rb
|
70
|
+
- lib/braintree/oauth_gateway.rb
|
71
|
+
- lib/braintree/europe_bank_account_gateway.rb
|
72
|
+
- lib/braintree/subscription_gateway.rb
|
73
|
+
- lib/braintree/paypal_account_gateway.rb
|
115
74
|
- lib/braintree/testing_gateway.rb
|
116
|
-
- lib/braintree/
|
117
|
-
- lib/braintree/
|
118
|
-
- lib/braintree/
|
75
|
+
- lib/braintree/webhook_notification_gateway.rb
|
76
|
+
- lib/braintree/webhook_notification.rb
|
77
|
+
- lib/braintree/address.rb
|
78
|
+
- lib/braintree/unknown_payment_method.rb
|
79
|
+
- lib/braintree/signature_service.rb
|
80
|
+
- lib/braintree/merchant_account/individual_details.rb
|
81
|
+
- lib/braintree/merchant_account/funding_details.rb
|
82
|
+
- lib/braintree/merchant_account/business_details.rb
|
83
|
+
- lib/braintree/merchant_account/address_details.rb
|
84
|
+
- lib/braintree/subscription_search.rb
|
85
|
+
- lib/braintree/settlement_batch_summary.rb
|
86
|
+
- lib/braintree/webhook_testing_gateway.rb
|
87
|
+
- lib/braintree/coinbase_account.rb
|
88
|
+
- lib/braintree/merchant_gateway.rb
|
89
|
+
- lib/braintree/customer.rb
|
90
|
+
- lib/braintree/us_bank_account_gateway.rb
|
91
|
+
- lib/braintree/europe_bank_account.rb
|
92
|
+
- lib/braintree/error_result.rb
|
93
|
+
- lib/braintree/validation_error_collection.rb
|
94
|
+
- lib/braintree/merchant.rb
|
95
|
+
- lib/braintree/sha256_digest.rb
|
96
|
+
- lib/braintree/customer_gateway.rb
|
97
|
+
- lib/braintree/xml/rexml.rb
|
98
|
+
- lib/braintree/xml/libxml.rb
|
99
|
+
- lib/braintree/xml/generator.rb
|
100
|
+
- lib/braintree/xml/parser.rb
|
101
|
+
- lib/braintree/address/country_names.rb
|
102
|
+
- lib/braintree/transaction_gateway.rb
|
103
|
+
- lib/braintree/dispute.rb
|
104
|
+
- lib/braintree/exceptions.rb
|
105
|
+
- lib/braintree/payment_instrument_type.rb
|
106
|
+
- lib/braintree/transparent_redirect_gateway.rb
|
107
|
+
- lib/braintree/configuration.rb
|
108
|
+
- lib/braintree/credit_card_verification_search.rb
|
109
|
+
- lib/braintree/http.rb
|
119
110
|
- lib/braintree/transaction/amex_express_checkout_details.rb
|
120
|
-
- lib/braintree/transaction/
|
111
|
+
- lib/braintree/transaction/subscription_details.rb
|
121
112
|
- lib/braintree/transaction/apple_pay_details.rb
|
122
113
|
- lib/braintree/transaction/coinbase_details.rb
|
123
|
-
- lib/braintree/transaction/credit_card_details.rb
|
124
|
-
- lib/braintree/transaction/customer_details.rb
|
125
|
-
- lib/braintree/transaction/disbursement_details.rb
|
126
|
-
- lib/braintree/transaction/paypal_details.rb
|
127
114
|
- lib/braintree/transaction/status_details.rb
|
128
|
-
- lib/braintree/transaction/
|
115
|
+
- lib/braintree/transaction/android_pay_details.rb
|
129
116
|
- lib/braintree/transaction/us_bank_account_details.rb
|
117
|
+
- lib/braintree/transaction/credit_card_details.rb
|
118
|
+
- lib/braintree/transaction/disbursement_details.rb
|
119
|
+
- lib/braintree/transaction/customer_details.rb
|
130
120
|
- lib/braintree/transaction/venmo_account_details.rb
|
131
|
-
- lib/braintree/
|
132
|
-
- lib/braintree/
|
133
|
-
- lib/braintree/
|
134
|
-
- lib/braintree/
|
135
|
-
- lib/braintree/
|
136
|
-
- lib/braintree/
|
137
|
-
- lib/braintree/
|
138
|
-
- lib/braintree/
|
121
|
+
- lib/braintree/transaction/address_details.rb
|
122
|
+
- lib/braintree/transaction/paypal_details.rb
|
123
|
+
- lib/braintree/errors.rb
|
124
|
+
- lib/braintree/transaction.rb
|
125
|
+
- lib/braintree/dispute/transaction_details.rb
|
126
|
+
- lib/braintree/merchant_account_gateway.rb
|
127
|
+
- lib/braintree/successful_result.rb
|
128
|
+
- lib/braintree/webhook_testing.rb
|
129
|
+
- lib/braintree/add_on.rb
|
130
|
+
- lib/braintree/modification.rb
|
131
|
+
- lib/braintree/payment_method_nonce_gateway.rb
|
132
|
+
- lib/braintree/merchant_account.rb
|
133
|
+
- lib/braintree/facilitator_details.rb
|
134
|
+
- lib/braintree/amex_express_checkout_card.rb
|
135
|
+
- lib/braintree/oauth_credentials.rb
|
136
|
+
- lib/braintree/credit_card_verification.rb
|
137
|
+
- lib/braintree/settlement_batch.rb
|
138
|
+
- lib/braintree/resource_collection.rb
|
139
|
+
- lib/braintree/discount.rb
|
140
|
+
- lib/braintree/client_token.rb
|
141
|
+
- lib/braintree/plan.rb
|
142
|
+
- lib/braintree/risk_data.rb
|
143
|
+
- lib/braintree/apple_pay_card.rb
|
139
144
|
- lib/braintree/validation_error.rb
|
140
|
-
- lib/braintree/
|
141
|
-
- lib/braintree/venmo_account.rb
|
145
|
+
- lib/braintree/payment_method_gateway.rb
|
142
146
|
- lib/braintree/version.rb
|
143
|
-
- lib/braintree/
|
144
|
-
- lib/braintree/
|
145
|
-
- lib/braintree/
|
146
|
-
- lib/braintree
|
147
|
-
- lib/braintree/xml.rb
|
148
|
-
- lib/braintree/xml/generator.rb
|
149
|
-
- lib/braintree/xml/libxml.rb
|
150
|
-
- lib/braintree/xml/parser.rb
|
151
|
-
- lib/braintree/xml/rexml.rb
|
152
|
-
- lib/ssl/api_braintreegateway_com.ca.crt
|
147
|
+
- lib/braintree/address_gateway.rb
|
148
|
+
- lib/braintree/add_on_gateway.rb
|
149
|
+
- lib/braintree/gateway.rb
|
150
|
+
- lib/braintree.rb
|
153
151
|
- lib/ssl/securetrust_ca.crt
|
154
|
-
-
|
152
|
+
- lib/ssl/api_braintreegateway_com.ca.crt
|
155
153
|
- spec/hacks/tcp_socket.rb
|
156
154
|
- spec/httpsd.pid
|
157
|
-
- spec/
|
155
|
+
- spec/client.sh
|
156
|
+
- spec/ssl/privateKey.key
|
157
|
+
- spec/ssl/certificate.crt
|
158
|
+
- spec/ssl/geotrust_global.crt
|
158
159
|
- spec/integration/braintree/address_spec.rb
|
159
|
-
- spec/integration/braintree/
|
160
|
-
- spec/integration/braintree/
|
161
|
-
- spec/integration/braintree/
|
162
|
-
- spec/integration/braintree/
|
163
|
-
- spec/integration/braintree/
|
160
|
+
- spec/integration/braintree/plan_spec.rb
|
161
|
+
- spec/integration/braintree/us_bank_account_spec.rb
|
162
|
+
- spec/integration/braintree/test_transaction_spec.rb
|
163
|
+
- spec/integration/braintree/settlement_batch_summary_spec.rb
|
164
|
+
- spec/integration/braintree/transaction_spec.rb
|
165
|
+
- spec/integration/braintree/test/transaction_amounts_spec.rb
|
166
|
+
- spec/integration/braintree/transaction_search_spec.rb
|
164
167
|
- spec/integration/braintree/credit_card_verification_search_spec.rb
|
165
|
-
- spec/integration/braintree/credit_card_verification_spec.rb
|
166
|
-
- spec/integration/braintree/customer_search_spec.rb
|
167
|
-
- spec/integration/braintree/customer_spec.rb
|
168
168
|
- spec/integration/braintree/disbursement_spec.rb
|
169
|
-
- spec/integration/braintree/
|
170
|
-
- spec/integration/braintree/
|
171
|
-
- spec/integration/braintree/
|
172
|
-
- spec/integration/braintree/
|
173
|
-
- spec/integration/braintree/merchant_spec.rb
|
169
|
+
- spec/integration/braintree/transparent_redirect_spec.rb
|
170
|
+
- spec/integration/braintree/add_on_spec.rb
|
171
|
+
- spec/integration/braintree/paypal_account_spec.rb
|
172
|
+
- spec/integration/braintree/credit_card_verification_spec.rb
|
174
173
|
- spec/integration/braintree/oauth_spec.rb
|
174
|
+
- spec/integration/braintree/http_spec.rb
|
175
|
+
- spec/integration/braintree/error_codes_spec.rb
|
176
|
+
- spec/integration/braintree/credit_card_spec.rb
|
177
|
+
- spec/integration/braintree/customer_search_spec.rb
|
178
|
+
- spec/integration/braintree/client_api/client_token_spec.rb
|
179
|
+
- spec/integration/braintree/client_api/spec_helper.rb
|
175
180
|
- spec/integration/braintree/payment_method_nonce_spec.rb
|
176
181
|
- spec/integration/braintree/payment_method_spec.rb
|
177
|
-
- spec/integration/braintree/
|
178
|
-
- spec/integration/braintree/
|
179
|
-
- spec/integration/braintree/
|
182
|
+
- spec/integration/braintree/coinbase_spec.rb
|
183
|
+
- spec/integration/braintree/merchant_account_spec.rb
|
184
|
+
- spec/integration/braintree/advanced_search_spec.rb
|
185
|
+
- spec/integration/braintree/merchant_spec.rb
|
186
|
+
- spec/integration/braintree/discount_spec.rb
|
187
|
+
- spec/integration/braintree/customer_spec.rb
|
180
188
|
- spec/integration/braintree/subscription_spec.rb
|
181
|
-
- spec/integration/braintree/test/transaction_amounts_spec.rb
|
182
|
-
- spec/integration/braintree/test_transaction_spec.rb
|
183
|
-
- spec/integration/braintree/transaction_search_spec.rb
|
184
|
-
- spec/integration/braintree/transaction_spec.rb
|
185
|
-
- spec/integration/braintree/transparent_redirect_spec.rb
|
186
|
-
- spec/integration/braintree/us_bank_account_spec.rb
|
187
189
|
- spec/integration/spec_helper.rb
|
188
|
-
- spec/oauth_test_helper.rb
|
189
|
-
- spec/script/httpsd.rb
|
190
|
-
- spec/spec.opts
|
191
|
-
- spec/spec_helper.rb
|
192
|
-
- spec/ssl/certificate.crt
|
193
|
-
- spec/ssl/geotrust_global.crt
|
194
|
-
- spec/ssl/privateKey.key
|
195
190
|
- spec/unit/braintree/address_spec.rb
|
196
|
-
- spec/unit/braintree/
|
197
|
-
- spec/unit/braintree/
|
198
|
-
- spec/unit/braintree/
|
191
|
+
- spec/unit/braintree/validation_error_spec.rb
|
192
|
+
- spec/unit/braintree/sha256_digest_spec.rb
|
193
|
+
- spec/unit/braintree/validation_error_collection_spec.rb
|
194
|
+
- spec/unit/braintree/risk_data_spec.rb
|
195
|
+
- spec/unit/braintree/dispute_spec.rb
|
199
196
|
- spec/unit/braintree/configuration_spec.rb
|
200
197
|
- spec/unit/braintree/credentials_parser_spec.rb
|
201
|
-
- spec/unit/braintree/
|
198
|
+
- spec/unit/braintree/webhook_notification_spec.rb
|
199
|
+
- spec/unit/braintree/transaction_spec.rb
|
200
|
+
- spec/unit/braintree/transaction_search_spec.rb
|
202
201
|
- spec/unit/braintree/credit_card_verification_search_spec.rb
|
203
|
-
- spec/unit/braintree/
|
204
|
-
- spec/unit/braintree/customer_spec.rb
|
205
|
-
- spec/unit/braintree/digest_spec.rb
|
202
|
+
- spec/unit/braintree/client_token_spec.rb
|
206
203
|
- spec/unit/braintree/disbursement_spec.rb
|
207
|
-
- spec/unit/braintree/dispute_spec.rb
|
208
|
-
- spec/unit/braintree/error_result_spec.rb
|
209
|
-
- spec/unit/braintree/errors_spec.rb
|
210
|
-
- spec/unit/braintree/http_spec.rb
|
211
|
-
- spec/unit/braintree/merchant_account_spec.rb
|
212
|
-
- spec/unit/braintree/modification_spec.rb
|
213
|
-
- spec/unit/braintree/payment_method_spec.rb
|
214
|
-
- spec/unit/braintree/paypal_account_spec.rb
|
215
|
-
- spec/unit/braintree/resource_collection_spec.rb
|
216
|
-
- spec/unit/braintree/risk_data_spec.rb
|
217
|
-
- spec/unit/braintree/sha256_digest_spec.rb
|
218
204
|
- spec/unit/braintree/signature_service_spec.rb
|
219
|
-
- spec/unit/braintree/
|
220
|
-
- spec/unit/braintree/subscription_spec.rb
|
205
|
+
- spec/unit/braintree/transparent_redirect_spec.rb
|
221
206
|
- spec/unit/braintree/successful_result_spec.rb
|
207
|
+
- spec/unit/braintree/subscription_search_spec.rb
|
208
|
+
- spec/unit/braintree/xml_spec.rb
|
209
|
+
- spec/unit/braintree/paypal_account_spec.rb
|
222
210
|
- spec/unit/braintree/three_d_secure_info_spec.rb
|
223
|
-
- spec/unit/braintree/
|
224
|
-
- spec/unit/braintree/
|
225
|
-
- spec/unit/braintree/transaction/deposit_details_spec.rb
|
226
|
-
- spec/unit/braintree/transaction_search_spec.rb
|
227
|
-
- spec/unit/braintree/transaction_spec.rb
|
228
|
-
- spec/unit/braintree/transparent_redirect_spec.rb
|
229
|
-
- spec/unit/braintree/unknown_payment_method_spec.rb
|
211
|
+
- spec/unit/braintree/credit_card_verification_spec.rb
|
212
|
+
- spec/unit/braintree/http_spec.rb
|
230
213
|
- spec/unit/braintree/util_spec.rb
|
231
|
-
- spec/unit/braintree/
|
232
|
-
- spec/unit/braintree/
|
233
|
-
- spec/unit/braintree/webhook_notification_spec.rb
|
214
|
+
- spec/unit/braintree/credit_card_spec.rb
|
215
|
+
- spec/unit/braintree/xml/rexml_spec.rb
|
234
216
|
- spec/unit/braintree/xml/libxml_spec.rb
|
235
217
|
- spec/unit/braintree/xml/parser_spec.rb
|
236
|
-
- spec/unit/braintree/
|
237
|
-
- spec/unit/braintree/
|
218
|
+
- spec/unit/braintree/digest_spec.rb
|
219
|
+
- spec/unit/braintree/resource_collection_spec.rb
|
220
|
+
- spec/unit/braintree/errors_spec.rb
|
221
|
+
- spec/unit/braintree/transaction/deposit_details_spec.rb
|
222
|
+
- spec/unit/braintree/transaction/customer_details_spec.rb
|
223
|
+
- spec/unit/braintree/transaction/credit_card_details_spec.rb
|
224
|
+
- spec/unit/braintree/payment_method_spec.rb
|
225
|
+
- spec/unit/braintree/unknown_payment_method_spec.rb
|
226
|
+
- spec/unit/braintree/base_module_spec.rb
|
227
|
+
- spec/unit/braintree/merchant_account_spec.rb
|
228
|
+
- spec/unit/braintree/error_result_spec.rb
|
229
|
+
- spec/unit/braintree/modification_spec.rb
|
230
|
+
- spec/unit/braintree/apple_pay_card_spec.rb
|
231
|
+
- spec/unit/braintree/customer_spec.rb
|
232
|
+
- spec/unit/braintree/subscription_spec.rb
|
238
233
|
- spec/unit/braintree_spec.rb
|
239
234
|
- spec/unit/spec_helper.rb
|
235
|
+
- spec/spec_helper.rb
|
236
|
+
- spec/oauth_test_helper.rb
|
237
|
+
- spec/script/httpsd.rb
|
238
|
+
- spec/spec.opts
|
239
|
+
- braintree.gemspec
|
240
240
|
homepage: http://www.braintreepayments.com/
|
241
241
|
licenses:
|
242
242
|
- MIT
|
@@ -247,17 +247,17 @@ require_paths:
|
|
247
247
|
- lib
|
248
248
|
required_ruby_version: !ruby/object:Gem::Requirement
|
249
249
|
requirements:
|
250
|
-
- -
|
250
|
+
- - '>='
|
251
251
|
- !ruby/object:Gem::Version
|
252
252
|
version: '0'
|
253
253
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
254
254
|
requirements:
|
255
|
-
- -
|
255
|
+
- - '>='
|
256
256
|
- !ruby/object:Gem::Version
|
257
257
|
version: '0'
|
258
258
|
requirements: []
|
259
259
|
rubyforge_project: braintree
|
260
|
-
rubygems_version: 2.
|
260
|
+
rubygems_version: 2.1.11
|
261
261
|
signing_key:
|
262
262
|
specification_version: 4
|
263
263
|
summary: Braintree Gateway Ruby Client Library
|