braintree 2.48.0 → 2.48.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 4d4926fffb25ae723d3106c240b92e06f41ec2ee
4
- data.tar.gz: 60cd49a6268f33adfd8f7ddbdceb01a0042d8a1c
5
- SHA512:
6
- metadata.gz: a2b20f570810e8b39c33d88891f1a96cca308b7931d29d332010d6c00f87ca917636bf800c5ba24d2346c6591b74c68ed0803cd71d4f90e7b6cbb9b5a41bace4
7
- data.tar.gz: 9385406d5098cc15e3cd2df63425fe1c0cd54fd4c73c42f7ed72bc8b3b9cc4a5a9d173a2853646318d0108d146d6feba160a37b34f8202ef86cdb73afde1e72b
1
+ ---
2
+ SHA512:
3
+ data.tar.gz: 14395a20a0ff4e8e7e400071d57bba57e9cdb8da33b75b51e83dc4190494195e2685bb27e2a8e0e1bd4a5e5bead12df9ed768986294e858974d717a0ece5d0e0
4
+ metadata.gz: 27622da8add4beec07f559159bf1bf93a2ae9cc50f7f878a0ed18684d97688cc0215e75ea0f9d2abdf26f20b144a043f0827f8233d21404f2facd69a754e0275
5
+ SHA1:
6
+ data.tar.gz: 0ccd252b1b006631d1135c2afc225b0fb37e6258
7
+ metadata.gz: adc0ab5f3d57ae84f8b677233bfb41cbc0fd43f2
@@ -2,7 +2,7 @@ module Braintree
2
2
  module Version
3
3
  Major = 2
4
4
  Minor = 48
5
- Tiny = 0
5
+ Tiny = 1
6
6
 
7
7
  String = "#{Major}.#{Minor}.#{Tiny}"
8
8
  end
@@ -19,7 +19,8 @@ module Braintree
19
19
  end
20
20
 
21
21
  def self._determine_parser
22
- if defined?(::LibXML::XML) && ::LibXML::XML.respond_to?(:default_keep_blanks=)
22
+ # LibXML causes a segfault in Ruby 2.0.0. We need to fall back to Rexml to prevent this segfault.
23
+ if !RUBY_VERSION.start_with?("2.0") && defined?(::LibXML::XML) && ::LibXML::XML.respond_to?(:default_keep_blanks=)
23
24
  ::Braintree::Xml::Libxml
24
25
  else
25
26
  ::Braintree::Xml::Rexml
data/spec/httpsd.pid CHANGED
@@ -1 +1 @@
1
- 27023
1
+ 11847
@@ -99,7 +99,7 @@ describe Braintree::TestTransaction do
99
99
  :merchant_id => 'integration_merchant_id',
100
100
  :public_key => 'integration_public_key',
101
101
  :private_key => 'integration_private_key',
102
- :logger => Logger.new(StringIO.new),
102
+ :logger => Logger.new(StringIO.new)
103
103
  )
104
104
 
105
105
  gateway = Braintree::Gateway.new(config)
@@ -57,9 +57,23 @@ describe Braintree::Xml::Parser do
57
57
  xml.should parse_to(:root => {:customers => [{:name => "Adam"}, {:name => "Ben"}]})
58
58
  end
59
59
 
60
- it "parses using libxml" do
60
+ it "parses using libxml when not using ruby 2.0" do
61
61
  xml = "<root><foo type=\"integer\">123</foo></root>"
62
+ stub_const("RUBY_VERSION", "2.1.1")
62
63
  ::Braintree::Xml::Libxml.should_receive(:parse).and_call_original
64
+
65
+ Braintree::Xml::Parser.hash_from_xml(xml)
66
+ end
67
+
68
+ it "parses using rexml when using ruby 2.0 to avoid Libxml segfault" do
69
+ segfault_prone_library_in_ruby_2_0 = ::Braintree::Xml::Libxml
70
+
71
+ xml = "<root><foo type=\"integer\">123</foo></root>"
72
+ stub_const("RUBY_VERSION", "2.0.0")
73
+
74
+ ::Braintree::Xml::Rexml.should_receive(:parse).and_call_original
75
+ segfault_prone_library_in_ruby_2_0.should_not_receive(:parse)
76
+
63
77
  Braintree::Xml::Parser.hash_from_xml(xml)
64
78
  end
65
79
  end
metadata CHANGED
@@ -1,256 +1,259 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: braintree
3
- version: !ruby/object:Gem::Version
4
- version: 2.48.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.48.1
5
5
  platform: ruby
6
- authors:
6
+ authors:
7
7
  - Braintree
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-02 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
11
+
12
+ date: 2015-09-03 00:00:00 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
14
15
  name: builder
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - '>='
18
- - !ruby/object:Gem::Version
19
- version: 2.0.0
20
- type: :runtime
21
16
  prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - '>='
25
- - !ruby/object:Gem::Version
17
+ requirement: &id001 !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
26
21
  version: 2.0.0
22
+ type: :runtime
23
+ version_requirements: *id001
27
24
  description: Ruby library for integrating with the Braintree Gateway
28
25
  email: code@getbraintree.com
29
26
  executables: []
27
+
30
28
  extensions: []
29
+
31
30
  extra_rdoc_files: []
32
- files:
31
+
32
+ files:
33
33
  - README.rdoc
34
34
  - LICENSE
35
- - lib/braintree/plan.rb
36
- - lib/braintree/payment_instrument_type.rb
37
- - lib/braintree/apple_pay_card.rb
38
- - lib/braintree/exceptions.rb
39
- - lib/braintree/dispute.rb
40
- - lib/braintree/oauth_credentials.rb
35
+ - lib/braintree.rb
36
+ - lib/braintree/discount.rb
37
+ - lib/braintree/configuration.rb
38
+ - lib/braintree/credit_card.rb
41
39
  - lib/braintree/testing_gateway.rb
42
- - lib/braintree/errors.rb
43
40
  - lib/braintree/address/country_names.rb
44
- - lib/braintree/address_gateway.rb
45
- - lib/braintree/transaction/customer_details.rb
46
- - lib/braintree/transaction/subscription_details.rb
47
- - lib/braintree/transaction/apple_pay_details.rb
48
- - lib/braintree/transaction/paypal_details.rb
49
- - lib/braintree/transaction/disbursement_details.rb
50
- - lib/braintree/transaction/android_pay_details.rb
51
- - lib/braintree/transaction/coinbase_details.rb
52
- - lib/braintree/transaction/status_details.rb
53
- - lib/braintree/transaction/credit_card_details.rb
54
- - lib/braintree/transaction/address_details.rb
55
- - lib/braintree/digest.rb
56
- - lib/braintree/coinbase_account.rb
57
- - lib/braintree/base_module.rb
58
- - lib/braintree/add_on.rb
59
- - lib/braintree/signature_service.rb
60
- - lib/braintree/gateway.rb
61
- - lib/braintree/three_d_secure_info.rb
41
+ - lib/braintree/sha256_digest.rb
42
+ - lib/braintree/merchant_gateway.rb
62
43
  - lib/braintree/dispute/transaction_details.rb
63
- - lib/braintree/credentials_parser.rb
64
- - lib/braintree/payment_method_nonce.rb
65
- - lib/braintree/address.rb
66
- - lib/braintree/merchant_account/business_details.rb
67
- - lib/braintree/merchant_account/funding_details.rb
68
- - lib/braintree/merchant_account/address_details.rb
69
- - lib/braintree/merchant_account/individual_details.rb
70
- - lib/braintree/subscription.rb
71
- - lib/braintree/resource_collection.rb
72
- - lib/braintree/descriptor.rb
73
- - lib/braintree/client_token_gateway.rb
44
+ - lib/braintree/android_pay_card.rb
45
+ - lib/braintree/digest.rb
74
46
  - lib/braintree/plan_gateway.rb
75
- - lib/braintree/europe_bank_account_gateway.rb
76
- - lib/braintree/discount_gateway.rb
47
+ - lib/braintree/webhook_testing.rb
48
+ - lib/braintree/plan.rb
49
+ - lib/braintree/unknown_payment_method.rb
50
+ - lib/braintree/subscription_gateway.rb
51
+ - lib/braintree/xml/generator.rb
52
+ - lib/braintree/xml/rexml.rb
53
+ - lib/braintree/xml/libxml.rb
54
+ - lib/braintree/xml/parser.rb
55
+ - lib/braintree/credentials_parser.rb
56
+ - lib/braintree/error_codes.rb
57
+ - lib/braintree/add_on.rb
77
58
  - lib/braintree/paypal_account.rb
78
- - lib/braintree/transparent_redirect_gateway.rb
79
- - lib/braintree/webhook_notification.rb
80
- - lib/braintree/util.rb
81
- - lib/braintree/settlement_batch_summary_gateway.rb
82
- - lib/braintree/settlement_batch_summary.rb
59
+ - lib/braintree/coinbase_account.rb
60
+ - lib/braintree/apple_pay_card.rb
61
+ - lib/braintree/error_result.rb
62
+ - lib/braintree/transaction_search.rb
83
63
  - lib/braintree/webhook_testing_gateway.rb
84
- - lib/braintree/customer_gateway.rb
85
- - lib/braintree/oauth_gateway.rb
64
+ - lib/braintree/address.rb
65
+ - lib/braintree/europe_bank_account_gateway.rb
66
+ - lib/braintree/customer_search.rb
67
+ - lib/braintree/merchant.rb
68
+ - lib/braintree/exceptions.rb
69
+ - lib/braintree/gateway.rb
70
+ - lib/braintree/payment_method_nonce.rb
71
+ - lib/braintree/disbursement.rb
72
+ - lib/braintree/transparent_redirect.rb
86
73
  - lib/braintree/version.rb
74
+ - lib/braintree/credit_card_verification_search.rb
75
+ - lib/braintree/http.rb
76
+ - lib/braintree/dispute.rb
77
+ - lib/braintree/descriptor.rb
78
+ - lib/braintree/transaction_gateway.rb
79
+ - lib/braintree/address_gateway.rb
87
80
  - lib/braintree/webhook_notification_gateway.rb
88
- - lib/braintree/test/nonce.rb
89
- - lib/braintree/test/amex_rewards.rb
81
+ - lib/braintree/add_on_gateway.rb
82
+ - lib/braintree/settlement_batch.rb
83
+ - lib/braintree/validation_error_collection.rb
84
+ - lib/braintree/util.rb
85
+ - lib/braintree/credit_card_verification.rb
86
+ - lib/braintree/test/credit_card.rb
90
87
  - lib/braintree/test/venmo_sdk.rb
91
88
  - lib/braintree/test/merchant_account.rb
92
- - lib/braintree/test/credit_card.rb
89
+ - lib/braintree/test/amex_rewards.rb
90
+ - lib/braintree/test/nonce.rb
93
91
  - lib/braintree/test/transaction_amounts.rb
94
- - lib/braintree/subscription_gateway.rb
95
- - lib/braintree/configuration.rb
96
- - lib/braintree/merchant.rb
97
- - lib/braintree/http.rb
98
- - lib/braintree/validation_error_collection.rb
99
- - lib/braintree/transaction.rb
100
- - lib/braintree/transaction_gateway.rb
101
- - lib/braintree/xml.rb
102
- - lib/braintree/credit_card_verification.rb
103
- - lib/braintree/subscription_search.rb
104
- - lib/braintree/client_token.rb
105
- - lib/braintree/discount.rb
106
- - lib/braintree/customer.rb
107
- - lib/braintree/sha256_digest.rb
108
- - lib/braintree/credit_card_verification_gateway.rb
109
- - lib/braintree/merchant_account.rb
110
- - lib/braintree/risk_data.rb
111
- - lib/braintree/successful_result.rb
112
- - lib/braintree/payment_method.rb
113
- - lib/braintree/europe_bank_account.rb
114
- - lib/braintree/transaction_search.rb
115
- - lib/braintree/settlement_batch.rb
116
- - lib/braintree/error_result.rb
117
- - lib/braintree/test_transaction.rb
118
- - lib/braintree/credit_card.rb
119
- - lib/braintree/merchant_gateway.rb
120
- - lib/braintree/modification.rb
121
- - lib/braintree/credit_card_verification_search.rb
122
- - lib/braintree/xml/generator.rb
123
- - lib/braintree/xml/parser.rb
124
- - lib/braintree/xml/rexml.rb
125
- - lib/braintree/xml/libxml.rb
126
- - lib/braintree/android_pay_card.rb
127
- - lib/braintree/customer_search.rb
128
- - lib/braintree/transparent_redirect.rb
129
- - lib/braintree/subscription/status_details.rb
92
+ - lib/braintree/payment_method_gateway.rb
93
+ - lib/braintree/merchant_account/address_details.rb
94
+ - lib/braintree/merchant_account/funding_details.rb
95
+ - lib/braintree/merchant_account/business_details.rb
96
+ - lib/braintree/merchant_account/individual_details.rb
97
+ - lib/braintree/base_module.rb
98
+ - lib/braintree/client_token_gateway.rb
99
+ - lib/braintree/signature_service.rb
100
+ - lib/braintree/merchant_account_gateway.rb
130
101
  - lib/braintree/payment_method_nonce_gateway.rb
131
- - lib/braintree/disbursement.rb
132
- - lib/braintree/webhook_testing.rb
102
+ - lib/braintree/transparent_redirect_gateway.rb
103
+ - lib/braintree/errors.rb
104
+ - lib/braintree/resource_collection.rb
105
+ - lib/braintree/credit_card_verification_gateway.rb
133
106
  - lib/braintree/advanced_search.rb
134
- - lib/braintree/add_on_gateway.rb
135
- - lib/braintree/merchant_account_gateway.rb
136
- - lib/braintree/error_codes.rb
107
+ - lib/braintree/three_d_secure_info.rb
108
+ - lib/braintree/modification.rb
109
+ - lib/braintree/oauth_credentials.rb
110
+ - lib/braintree/successful_result.rb
111
+ - lib/braintree/settlement_batch_summary_gateway.rb
137
112
  - lib/braintree/validation_error.rb
138
- - lib/braintree/payment_method_gateway.rb
139
- - lib/braintree/unknown_payment_method.rb
113
+ - lib/braintree/xml.rb
114
+ - lib/braintree/test_transaction.rb
115
+ - lib/braintree/subscription_search.rb
116
+ - lib/braintree/subscription.rb
117
+ - lib/braintree/payment_instrument_type.rb
140
118
  - lib/braintree/credit_card_gateway.rb
119
+ - lib/braintree/merchant_account.rb
120
+ - lib/braintree/settlement_batch_summary.rb
141
121
  - lib/braintree/paypal_account_gateway.rb
142
- - lib/braintree.rb
143
- - lib/ssl/api_braintreegateway_com.ca.crt
144
- - lib/ssl/sandbox_braintreegateway_com.ca.crt
122
+ - lib/braintree/europe_bank_account.rb
123
+ - lib/braintree/payment_method.rb
124
+ - lib/braintree/customer.rb
125
+ - lib/braintree/webhook_notification.rb
126
+ - lib/braintree/client_token.rb
127
+ - lib/braintree/transaction.rb
128
+ - lib/braintree/customer_gateway.rb
129
+ - lib/braintree/transaction/address_details.rb
130
+ - lib/braintree/transaction/status_details.rb
131
+ - lib/braintree/transaction/paypal_details.rb
132
+ - lib/braintree/transaction/credit_card_details.rb
133
+ - lib/braintree/transaction/coinbase_details.rb
134
+ - lib/braintree/transaction/customer_details.rb
135
+ - lib/braintree/transaction/android_pay_details.rb
136
+ - lib/braintree/transaction/subscription_details.rb
137
+ - lib/braintree/transaction/apple_pay_details.rb
138
+ - lib/braintree/transaction/disbursement_details.rb
139
+ - lib/braintree/subscription/status_details.rb
140
+ - lib/braintree/discount_gateway.rb
141
+ - lib/braintree/risk_data.rb
142
+ - lib/braintree/oauth_gateway.rb
145
143
  - lib/ssl/www_braintreegateway_com.ca.crt
144
+ - lib/ssl/sandbox_braintreegateway_com.ca.crt
146
145
  - lib/ssl/securetrust_ca.crt
147
- - spec/hacks/tcp_socket.rb
148
- - spec/script/httpsd.rb
149
- - spec/ssl/privateKey.key
150
- - spec/ssl/certificate.crt
151
- - spec/ssl/geotrust_global.crt
146
+ - lib/ssl/api_braintreegateway_com.ca.crt
147
+ - spec/integration/spec_helper.rb
148
+ - spec/integration/braintree/customer_spec.rb
149
+ - spec/integration/braintree/merchant_account_spec.rb
150
+ - spec/integration/braintree/credit_card_verification_search_spec.rb
151
+ - spec/integration/braintree/oauth_spec.rb
152
+ - spec/integration/braintree/credit_card_spec.rb
153
+ - spec/integration/braintree/transaction_spec.rb
154
+ - spec/integration/braintree/disbursement_spec.rb
155
+ - spec/integration/braintree/transaction_search_spec.rb
156
+ - spec/integration/braintree/advanced_search_spec.rb
157
+ - spec/integration/braintree/settlement_batch_summary_spec.rb
158
+ - spec/integration/braintree/transparent_redirect_spec.rb
159
+ - spec/integration/braintree/test_transaction_spec.rb
160
+ - spec/integration/braintree/merchant_spec.rb
161
+ - spec/integration/braintree/test/transaction_amounts_spec.rb
162
+ - spec/integration/braintree/payment_method_spec.rb
163
+ - spec/integration/braintree/plan_spec.rb
164
+ - spec/integration/braintree/payment_method_nonce_spec.rb
165
+ - spec/integration/braintree/error_codes_spec.rb
166
+ - spec/integration/braintree/credit_card_verification_spec.rb
167
+ - spec/integration/braintree/discount_spec.rb
168
+ - spec/integration/braintree/add_on_spec.rb
169
+ - spec/integration/braintree/address_spec.rb
170
+ - spec/integration/braintree/paypal_account_spec.rb
171
+ - spec/integration/braintree/client_api/spec_helper.rb
172
+ - spec/integration/braintree/client_api/client_token_spec.rb
173
+ - spec/integration/braintree/http_spec.rb
174
+ - spec/integration/braintree/coinbase_spec.rb
175
+ - spec/integration/braintree/subscription_spec.rb
176
+ - spec/integration/braintree/customer_search_spec.rb
177
+ - spec/spec_helper.rb
152
178
  - spec/spec.opts
153
- - spec/unit/braintree/risk_data_spec.rb
154
- - spec/unit/braintree/webhook_notification_spec.rb
155
- - spec/unit/braintree/subscription_spec.rb
156
- - spec/unit/braintree/transaction/deposit_details_spec.rb
157
- - spec/unit/braintree/transaction/credit_card_details_spec.rb
158
- - spec/unit/braintree/transaction/customer_details_spec.rb
159
- - spec/unit/braintree/client_token_spec.rb
160
- - spec/unit/braintree/successful_result_spec.rb
161
- - spec/unit/braintree/credit_card_verification_search_spec.rb
162
- - spec/unit/braintree/subscription_search_spec.rb
163
- - spec/unit/braintree/http_spec.rb
164
- - spec/unit/braintree/unknown_payment_method_spec.rb
165
- - spec/unit/braintree/disbursement_spec.rb
166
- - spec/unit/braintree/merchant_account_spec.rb
179
+ - spec/hacks/tcp_socket.rb
180
+ - spec/unit/spec_helper.rb
181
+ - spec/unit/braintree/signature_service_spec.rb
182
+ - spec/unit/braintree/customer_spec.rb
167
183
  - spec/unit/braintree/digest_spec.rb
168
- - spec/unit/braintree/base_module_spec.rb
169
- - spec/unit/braintree/paypal_account_spec.rb
170
- - spec/unit/braintree/credit_card_spec.rb
171
- - spec/unit/braintree/validation_error_spec.rb
172
- - spec/unit/braintree/credit_card_verification_spec.rb
173
- - spec/unit/braintree/errors_spec.rb
184
+ - spec/unit/braintree/merchant_account_spec.rb
185
+ - spec/unit/braintree/credit_card_verification_search_spec.rb
174
186
  - spec/unit/braintree/apple_pay_card_spec.rb
175
- - spec/unit/braintree/three_d_secure_info_spec.rb
176
187
  - spec/unit/braintree/validation_error_collection_spec.rb
188
+ - spec/unit/braintree/xml_spec.rb
189
+ - spec/unit/braintree/credit_card_spec.rb
177
190
  - spec/unit/braintree/transaction_spec.rb
191
+ - spec/unit/braintree/disbursement_spec.rb
178
192
  - spec/unit/braintree/resource_collection_spec.rb
179
- - spec/unit/braintree/transparent_redirect_spec.rb
180
- - spec/unit/braintree/credentials_parser_spec.rb
181
- - spec/unit/braintree/customer_spec.rb
182
- - spec/unit/braintree/address_spec.rb
183
- - spec/unit/braintree/util_spec.rb
184
- - spec/unit/braintree/dispute_spec.rb
185
- - spec/unit/braintree/sha256_digest_spec.rb
186
- - spec/unit/braintree/error_result_spec.rb
187
193
  - spec/unit/braintree/transaction_search_spec.rb
194
+ - spec/unit/braintree/xml/libxml_spec.rb
188
195
  - spec/unit/braintree/xml/parser_spec.rb
189
196
  - spec/unit/braintree/xml/rexml_spec.rb
190
- - spec/unit/braintree/xml/libxml_spec.rb
197
+ - spec/unit/braintree/modification_spec.rb
198
+ - spec/unit/braintree/validation_error_spec.rb
199
+ - spec/unit/braintree/dispute_spec.rb
200
+ - spec/unit/braintree/sha256_digest_spec.rb
201
+ - spec/unit/braintree/transparent_redirect_spec.rb
202
+ - spec/unit/braintree/errors_spec.rb
203
+ - spec/unit/braintree/three_d_secure_info_spec.rb
204
+ - spec/unit/braintree/unknown_payment_method_spec.rb
191
205
  - spec/unit/braintree/payment_method_spec.rb
192
- - spec/unit/braintree/xml_spec.rb
206
+ - spec/unit/braintree/client_token_spec.rb
207
+ - spec/unit/braintree/subscription_search_spec.rb
208
+ - spec/unit/braintree/base_module_spec.rb
209
+ - spec/unit/braintree/credit_card_verification_spec.rb
210
+ - spec/unit/braintree/successful_result_spec.rb
211
+ - spec/unit/braintree/risk_data_spec.rb
212
+ - spec/unit/braintree/error_result_spec.rb
213
+ - spec/unit/braintree/util_spec.rb
193
214
  - spec/unit/braintree/configuration_spec.rb
194
- - spec/unit/braintree/signature_service_spec.rb
195
- - spec/unit/braintree/modification_spec.rb
215
+ - spec/unit/braintree/address_spec.rb
216
+ - spec/unit/braintree/paypal_account_spec.rb
217
+ - spec/unit/braintree/http_spec.rb
218
+ - spec/unit/braintree/transaction/credit_card_details_spec.rb
219
+ - spec/unit/braintree/transaction/deposit_details_spec.rb
220
+ - spec/unit/braintree/transaction/customer_details_spec.rb
221
+ - spec/unit/braintree/subscription_spec.rb
222
+ - spec/unit/braintree/webhook_notification_spec.rb
223
+ - spec/unit/braintree/credentials_parser_spec.rb
196
224
  - spec/unit/braintree_spec.rb
197
- - spec/unit/spec_helper.rb
198
- - spec/httpsd.pid
225
+ - spec/ssl/privateKey.key
226
+ - spec/ssl/certificate.crt
227
+ - spec/ssl/geotrust_global.crt
199
228
  - spec/oauth_test_helper.rb
200
- - spec/spec_helper.rb
201
- - spec/integration/braintree/test_transaction_spec.rb
202
- - spec/integration/braintree/advanced_search_spec.rb
203
- - spec/integration/braintree/subscription_spec.rb
204
- - spec/integration/braintree/credit_card_verification_search_spec.rb
205
- - spec/integration/braintree/payment_method_nonce_spec.rb
206
- - spec/integration/braintree/http_spec.rb
207
- - spec/integration/braintree/merchant_spec.rb
208
- - spec/integration/braintree/disbursement_spec.rb
209
- - spec/integration/braintree/merchant_account_spec.rb
210
- - spec/integration/braintree/plan_spec.rb
211
- - spec/integration/braintree/settlement_batch_summary_spec.rb
212
- - spec/integration/braintree/paypal_account_spec.rb
213
- - spec/integration/braintree/credit_card_spec.rb
214
- - spec/integration/braintree/error_codes_spec.rb
215
- - spec/integration/braintree/credit_card_verification_spec.rb
216
- - spec/integration/braintree/test/transaction_amounts_spec.rb
217
- - spec/integration/braintree/add_on_spec.rb
218
- - spec/integration/braintree/oauth_spec.rb
219
- - spec/integration/braintree/transaction_spec.rb
220
- - spec/integration/braintree/transparent_redirect_spec.rb
221
- - spec/integration/braintree/customer_spec.rb
222
- - spec/integration/braintree/address_spec.rb
223
- - spec/integration/braintree/coinbase_spec.rb
224
- - spec/integration/braintree/client_api/client_token_spec.rb
225
- - spec/integration/braintree/client_api/spec_helper.rb
226
- - spec/integration/braintree/transaction_search_spec.rb
227
- - spec/integration/braintree/discount_spec.rb
228
- - spec/integration/braintree/payment_method_spec.rb
229
- - spec/integration/braintree/customer_search_spec.rb
230
- - spec/integration/spec_helper.rb
229
+ - spec/httpsd.pid
230
+ - spec/script/httpsd.rb
231
231
  - braintree.gemspec
232
232
  homepage: http://www.braintreepayments.com/
233
- licenses:
233
+ licenses:
234
234
  - MIT
235
235
  metadata: {}
236
+
236
237
  post_install_message:
237
238
  rdoc_options: []
238
- require_paths:
239
+
240
+ require_paths:
239
241
  - lib
240
- required_ruby_version: !ruby/object:Gem::Requirement
241
- requirements:
242
- - - '>='
243
- - !ruby/object:Gem::Version
244
- version: '0'
245
- required_rubygems_version: !ruby/object:Gem::Requirement
246
- requirements:
247
- - - '>='
248
- - !ruby/object:Gem::Version
249
- version: '0'
242
+ required_ruby_version: !ruby/object:Gem::Requirement
243
+ requirements:
244
+ - &id002
245
+ - ">="
246
+ - !ruby/object:Gem::Version
247
+ version: "0"
248
+ required_rubygems_version: !ruby/object:Gem::Requirement
249
+ requirements:
250
+ - *id002
250
251
  requirements: []
252
+
251
253
  rubyforge_project: braintree
252
- rubygems_version: 2.0.3
254
+ rubygems_version: 2.0.17
253
255
  signing_key:
254
256
  specification_version: 4
255
257
  summary: Braintree Gateway Ruby Client Library
256
258
  test_files: []
259
+