braintree 2.37.0 → 2.38.0

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
1
  ---
2
2
  SHA1:
3
- metadata.gz: c48ff6229db7ba353e35139264ee163912aad603
4
- data.tar.gz: 923b9b3a830e9ea040579593e4f21e27b3161efa
3
+ metadata.gz: 16c84d1f808295427036d552463ba51c3161afc1
4
+ data.tar.gz: 48573a382517e1a84acb107ec5d4c78bc1fcfce6
5
5
  SHA512:
6
- metadata.gz: d0e8171010de2bff30836124bfcf8421afa7e3093d5f19e1550a7cb45497d83be5e5f88483cf9cb6611c2aaa69d53645edfd6a1204c331c050b3a33232fdc3d0
7
- data.tar.gz: 6da4afeea421900cc0c429e9410fa14cd164e60711bd3b81bfad62b9bc9e6f7498d19de7a74a012404031f9ce3c15a0e57e63c16a66c2f6e3fa37ba9c548246d
6
+ metadata.gz: 4f31124b76375753bcceae64251eda63db11179859eef390eaea63ea9b4bb108a750cb39ef96b9adf9b3a14284687fbbfb7e1b3705bd0f668dfa54d04d2a66a4
7
+ data.tar.gz: ff69dd998a0fcce6959df8e234b2b83561ac307a97bb738caaccd21e2981110250fc7d6818dfe33202f4c3bcf04a748167a17901868f9f1758a72336592b8995
@@ -28,6 +28,7 @@ module Braintree
28
28
  ProductNotReceived = "product_not_received"
29
29
  ProductUnsatisfactory = "product_unsatisfactory"
30
30
  TransactionAmountDiffers = "transaction_amount_differs"
31
+ Retrieval = "retrieval"
31
32
  end
32
33
 
33
34
  class << self
@@ -2,44 +2,32 @@ module Braintree # :nodoc:
2
2
  # Super class for all Braintree exceptions.
3
3
  class BraintreeError < ::StandardError; end
4
4
 
5
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
6
5
  class AuthenticationError < BraintreeError; end
7
6
 
8
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
9
7
  class AuthorizationError < BraintreeError; end
10
8
 
11
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
12
9
  class ConfigurationError < BraintreeError
13
10
  def initialize(setting, message) # :nodoc:
14
11
  super "Braintree::Configuration.#{setting} #{message}"
15
12
  end
16
13
  end
17
14
 
18
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
19
15
  class DownForMaintenanceError < BraintreeError; end
20
16
 
21
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
22
17
  class ForgedQueryString < BraintreeError; end
23
18
 
24
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
25
19
  class InvalidSignature < BraintreeError; end
26
20
 
27
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
28
21
  class NotFoundError < BraintreeError; end
29
22
 
30
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
31
23
  class ServerError < BraintreeError; end
32
24
 
33
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
34
25
  class SSLCertificateError < BraintreeError; end
35
26
 
36
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
37
27
  class UnexpectedError < BraintreeError; end
38
28
 
39
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
40
29
  class UpgradeRequiredError < BraintreeError; end
41
30
 
42
- # See http://www.braintreepayments.com/docs/ruby/general/exceptions
43
31
  class ValidationsFailed < BraintreeError
44
32
  attr_reader :error_result
45
33
 
@@ -60,6 +60,7 @@ module Braintree
60
60
 
61
61
  def _http_do(http_verb, path, body = nil)
62
62
  connection = Net::HTTP.new(@config.server, @config.port)
63
+ connection.open_timeout = 60
63
64
  connection.read_timeout = 60
64
65
  if @config.ssl?
65
66
  connection.use_ssl = true
@@ -6,7 +6,7 @@ module Braintree
6
6
 
7
7
  def self._hmac(key, message)
8
8
  key_digest = ::Digest::SHA256.digest(key)
9
- sha256 = OpenSSL::Digest::Digest.new("sha256")
9
+ sha256 = OpenSSL::Digest.new("sha256")
10
10
  OpenSSL::HMAC.hexdigest(sha256, key_digest, message.to_s)
11
11
  end
12
12
  end
@@ -3,7 +3,7 @@ module Braintree
3
3
  class PayPalDetails
4
4
  include BaseModule
5
5
 
6
- attr_reader :payer_email, :payment_id, :authorization_id, :token,
6
+ attr_reader :custom_field, :payer_email, :payment_id, :authorization_id, :token,
7
7
  :image_url, :debug_id, :payee_email
8
8
 
9
9
  def initialize(attributes)
@@ -127,7 +127,17 @@ module Braintree
127
127
  {
128
128
  :shipping => AddressGateway._shared_signature
129
129
  },
130
- {:options => [:hold_in_escrow, :store_in_vault, :store_in_vault_on_success, :submit_for_settlement, :add_billing_address_to_payment_method, :store_shipping_address_in_vault, :venmo_sdk_session, :payee_email]},
130
+ {:options => [
131
+ :hold_in_escrow,
132
+ :store_in_vault,
133
+ :store_in_vault_on_success,
134
+ :submit_for_settlement,
135
+ :add_billing_address_to_payment_method,
136
+ :store_shipping_address_in_vault,
137
+ :venmo_sdk_session,
138
+ :payee_email,
139
+ {:paypal => [:custom_field, :payee_email]}]
140
+ },
131
141
  {:custom_fields => :_any_key_},
132
142
  {:descriptor => [:name, :phone, :url]},
133
143
  {:paypal_account => [:email, :token, :paypal_data, :payee_email]},
@@ -1,7 +1,7 @@
1
1
  module Braintree
2
2
  module Version
3
3
  Major = 2
4
- Minor = 37
4
+ Minor = 38
5
5
  Tiny = 0
6
6
 
7
7
  String = "#{Major}.#{Minor}.#{Tiny}"
@@ -1 +1 @@
1
- 22683
1
+ 8692
@@ -1328,6 +1328,58 @@ describe Braintree::Transaction do
1328
1328
  result.transaction.paypal_details.debug_id.should_not be_nil
1329
1329
  result.transaction.paypal_details.payee_email.should == "bt_seller_us@paypal.com"
1330
1330
  end
1331
+
1332
+ it "can create a transaction with a payee email in options.paypal" do
1333
+ customer = Braintree::Customer.create!
1334
+ nonce = nonce_for_new_payment_method(
1335
+ :paypal_account => {
1336
+ :consent_code => "PAYPAL_CONSENT_CODE",
1337
+ }
1338
+ )
1339
+ nonce.should_not be_nil
1340
+
1341
+ result = Braintree::Transaction.create(
1342
+ :type => "sale",
1343
+ :amount => Braintree::Test::TransactionAmounts::Authorize,
1344
+ :payment_method_nonce => nonce,
1345
+ :options => {
1346
+ :paypal => {
1347
+ :payee_email => "bt_seller_us@paypal.com"
1348
+ }
1349
+ }
1350
+ )
1351
+
1352
+ result.success?.should == true
1353
+ result.transaction.paypal_details.should_not be_nil
1354
+ result.transaction.paypal_details.debug_id.should_not be_nil
1355
+ result.transaction.paypal_details.payee_email.should == "bt_seller_us@paypal.com"
1356
+ end
1357
+
1358
+ it "can create a transaction with a paypal custom field" do
1359
+ customer = Braintree::Customer.create!
1360
+ nonce = nonce_for_new_payment_method(
1361
+ :paypal_account => {
1362
+ :consent_code => "PAYPAL_CONSENT_CODE",
1363
+ }
1364
+ )
1365
+ nonce.should_not be_nil
1366
+
1367
+ result = Braintree::Transaction.create(
1368
+ :type => "sale",
1369
+ :amount => Braintree::Test::TransactionAmounts::Authorize,
1370
+ :payment_method_nonce => nonce,
1371
+ :options => {
1372
+ :paypal => {
1373
+ :custom_field => "Additional info"
1374
+ }
1375
+ }
1376
+ )
1377
+
1378
+ result.success?.should == true
1379
+ result.transaction.paypal_details.should_not be_nil
1380
+ result.transaction.paypal_details.debug_id.should_not be_nil
1381
+ result.transaction.paypal_details.custom_field.should == "Additional info"
1382
+ end
1331
1383
  end
1332
1384
 
1333
1385
  context "three_d_secure" do
@@ -2677,6 +2729,20 @@ describe Braintree::Transaction do
2677
2729
  dispute.transaction_details.id.should == "disputedtransaction"
2678
2730
  end
2679
2731
 
2732
+ it "includes disputes on found transactions" do
2733
+ found_transaction = Braintree::Transaction.find("retrievaltransaction")
2734
+
2735
+ found_transaction.disputes.count.should == 1
2736
+
2737
+ dispute = found_transaction.disputes.first
2738
+ dispute.amount.should == Braintree::Util.to_big_decimal("1000.00")
2739
+ dispute.currency_iso_code.should == "USD"
2740
+ dispute.reason.should == Braintree::Dispute::Reason::Retrieval
2741
+ dispute.status.should == Braintree::Dispute::Status::Open
2742
+ dispute.transaction_details.amount.should == Braintree::Util.to_big_decimal("1000.00")
2743
+ dispute.transaction_details.id.should == "retrievaltransaction"
2744
+ end
2745
+
2680
2746
  it "is not disputed" do
2681
2747
  result = Braintree::Transaction.create(
2682
2748
  :type => "sale",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: braintree
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.37.0
4
+ version: 2.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Braintree
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-21 00:00:00.000000000 Z
11
+ date: 2014-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: builder
@@ -32,180 +32,180 @@ extra_rdoc_files: []
32
32
  files:
33
33
  - README.rdoc
34
34
  - LICENSE
35
- - lib/braintree/xml.rb
36
- - lib/braintree/exceptions.rb
35
+ - lib/braintree.rb
36
+ - lib/braintree/configuration.rb
37
+ - lib/braintree/credit_card_verification_search.rb
38
+ - lib/braintree/discount_gateway.rb
39
+ - lib/braintree/add_on_gateway.rb
40
+ - lib/braintree/descriptor.rb
41
+ - lib/braintree/paypal_account_gateway.rb
42
+ - lib/braintree/subscription_search.rb
43
+ - lib/braintree/apple_pay_card.rb
44
+ - lib/braintree/merchant_account_gateway.rb
45
+ - lib/braintree/util.rb
46
+ - lib/braintree/add_on.rb
47
+ - lib/braintree/validation_error.rb
48
+ - lib/braintree/errors.rb
49
+ - lib/braintree/error_codes.rb
50
+ - lib/braintree/signature_service.rb
51
+ - lib/braintree/test_transaction.rb
52
+ - lib/braintree/discount.rb
53
+ - lib/braintree/client_token_gateway.rb
54
+ - lib/braintree/merchant_account/business_details.rb
55
+ - lib/braintree/merchant_account/address_details.rb
56
+ - lib/braintree/merchant_account/individual_details.rb
57
+ - lib/braintree/merchant_account/funding_details.rb
58
+ - lib/braintree/address.rb
59
+ - lib/braintree/webhook_testing_gateway.rb
60
+ - lib/braintree/transaction_search.rb
61
+ - lib/braintree/risk_data.rb
62
+ - lib/braintree/transparent_redirect.rb
63
+ - lib/braintree/digest.rb
37
64
  - lib/braintree/plan.rb
65
+ - lib/braintree/resource_collection.rb
66
+ - lib/braintree/sepa_bank_account.rb
67
+ - lib/braintree/payment_instrument_type.rb
68
+ - lib/braintree/subscription.rb
38
69
  - lib/braintree/payment_method_gateway.rb
70
+ - lib/braintree/error_result.rb
71
+ - lib/braintree/settlement_batch.rb
39
72
  - lib/braintree/plan_gateway.rb
40
- - lib/braintree/sha256_digest.rb
41
- - lib/braintree/transparent_redirect.rb
42
- - lib/braintree/credit_card_verification_gateway.rb
43
- - lib/braintree/dispute/transaction_details.rb
73
+ - lib/braintree/webhook_notification_gateway.rb
74
+ - lib/braintree/advanced_search.rb
75
+ - lib/braintree/xml/rexml.rb
76
+ - lib/braintree/xml/libxml.rb
77
+ - lib/braintree/xml/generator.rb
78
+ - lib/braintree/xml/parser.rb
79
+ - lib/braintree/customer.rb
80
+ - lib/braintree/settlement_batch_summary_gateway.rb
81
+ - lib/braintree/credit_card.rb
82
+ - lib/braintree/dispute.rb
83
+ - lib/braintree/subscription_gateway.rb
44
84
  - lib/braintree/client_token.rb
85
+ - lib/braintree/transaction.rb
86
+ - lib/braintree/paypal_account.rb
87
+ - lib/braintree/webhook_notification.rb
88
+ - lib/braintree/disbursement.rb
45
89
  - lib/braintree/http.rb
46
- - lib/braintree/validation_error.rb
47
- - lib/braintree/add_on_gateway.rb
48
- - lib/braintree/payment_instrument_type.rb
49
- - lib/braintree/customer_gateway.rb
50
- - lib/braintree/advanced_search.rb
51
- - lib/braintree/apple_pay_card.rb
52
- - lib/braintree/testing_gateway.rb
53
- - lib/braintree/error_codes.rb
90
+ - lib/braintree/webhook_testing.rb
54
91
  - lib/braintree/unknown_payment_method.rb
55
- - lib/braintree/webhook_notification.rb
56
- - lib/braintree/customer_search.rb
92
+ - lib/braintree/validation_error_collection.rb
93
+ - lib/braintree/sha256_digest.rb
94
+ - lib/braintree/credit_card_verification_gateway.rb
95
+ - lib/braintree/xml.rb
96
+ - lib/braintree/modification.rb
97
+ - lib/braintree/transaction_gateway.rb
98
+ - lib/braintree/sepa_bank_account_gateway.rb
99
+ - lib/braintree/testing_gateway.rb
100
+ - lib/braintree/version.rb
57
101
  - lib/braintree/successful_result.rb
58
- - lib/braintree/merchant_account.rb
59
- - lib/braintree/subscription.rb
60
- - lib/braintree/paypal_account_gateway.rb
61
- - lib/braintree/resource_collection.rb
62
- - lib/braintree/settlement_batch_summary.rb
63
- - lib/braintree/transaction/address_details.rb
102
+ - lib/braintree/base_module.rb
103
+ - lib/braintree/transaction/status_details.rb
104
+ - lib/braintree/transaction/paypal_details.rb
64
105
  - lib/braintree/transaction/customer_details.rb
65
- - lib/braintree/transaction/apple_pay_details.rb
106
+ - lib/braintree/transaction/address_details.rb
66
107
  - lib/braintree/transaction/disbursement_details.rb
67
- - lib/braintree/transaction/paypal_details.rb
68
- - lib/braintree/transaction/status_details.rb
69
108
  - lib/braintree/transaction/subscription_details.rb
109
+ - lib/braintree/transaction/apple_pay_details.rb
70
110
  - lib/braintree/transaction/credit_card_details.rb
71
- - lib/braintree/merchant_account/address_details.rb
72
- - lib/braintree/merchant_account/funding_details.rb
73
- - lib/braintree/merchant_account/individual_details.rb
74
- - lib/braintree/merchant_account/business_details.rb
75
- - lib/braintree/transaction_search.rb
76
- - lib/braintree/settlement_batch.rb
111
+ - lib/braintree/address_gateway.rb
112
+ - lib/braintree/customer_search.rb
113
+ - lib/braintree/exceptions.rb
114
+ - lib/braintree/dispute/transaction_details.rb
115
+ - lib/braintree/credit_card_gateway.rb
77
116
  - lib/braintree/credit_card_verification.rb
78
- - lib/braintree/discount.rb
79
- - lib/braintree/address.rb
80
- - lib/braintree/digest.rb
81
- - lib/braintree/disbursement.rb
82
- - lib/braintree/test/merchant_account.rb
117
+ - lib/braintree/transparent_redirect_gateway.rb
118
+ - lib/braintree/customer_gateway.rb
119
+ - lib/braintree/merchant_account.rb
83
120
  - lib/braintree/test/venmo_sdk.rb
121
+ - lib/braintree/test/credit_card.rb
84
122
  - lib/braintree/test/nonce.rb
85
123
  - lib/braintree/test/transaction_amounts.rb
86
- - lib/braintree/test/credit_card.rb
124
+ - lib/braintree/test/merchant_account.rb
125
+ - lib/braintree/gateway.rb
87
126
  - lib/braintree/address/country_names.rb
88
- - lib/braintree/webhook_testing.rb
89
- - lib/braintree/error_result.rb
90
- - lib/braintree/paypal_account.rb
91
- - lib/braintree/settlement_batch_summary_gateway.rb
92
- - lib/braintree/transaction_gateway.rb
127
+ - lib/braintree/settlement_batch_summary.rb
93
128
  - lib/braintree/payment_method.rb
94
- - lib/braintree/subscription_gateway.rb
95
- - lib/braintree/transparent_redirect_gateway.rb
96
- - lib/braintree/credit_card_verification_search.rb
97
- - lib/braintree/add_on.rb
98
- - lib/braintree/transaction.rb
99
- - lib/braintree/credit_card.rb
100
- - lib/braintree/descriptor.rb
101
- - lib/braintree/address_gateway.rb
102
- - lib/braintree/signature_service.rb
103
- - lib/braintree/webhook_notification_gateway.rb
104
- - lib/braintree/configuration.rb
105
- - lib/braintree/xml/parser.rb
106
- - lib/braintree/xml/generator.rb
107
- - lib/braintree/xml/rexml.rb
108
- - lib/braintree/xml/libxml.rb
109
- - lib/braintree/test_transaction.rb
110
- - lib/braintree/customer.rb
111
- - lib/braintree/base_module.rb
112
- - lib/braintree/merchant_account_gateway.rb
113
- - lib/braintree/sepa_bank_account_gateway.rb
114
- - lib/braintree/credit_card_gateway.rb
115
- - lib/braintree/errors.rb
116
- - lib/braintree/util.rb
117
- - lib/braintree/validation_error_collection.rb
118
- - lib/braintree/risk_data.rb
119
- - lib/braintree/gateway.rb
120
- - lib/braintree/webhook_testing_gateway.rb
121
- - lib/braintree/client_token_gateway.rb
122
- - lib/braintree/discount_gateway.rb
123
- - lib/braintree/sepa_bank_account.rb
124
- - lib/braintree/version.rb
125
- - lib/braintree/subscription_search.rb
126
- - lib/braintree/dispute.rb
127
- - lib/braintree/modification.rb
128
- - lib/braintree.rb
129
- - lib/ssl/www_braintreegateway_com.ca.crt
129
+ - lib/ssl/api_braintreegateway_com.ca.crt
130
130
  - lib/ssl/sandbox_braintreegateway_com.ca.crt
131
131
  - lib/ssl/securetrust_ca.crt
132
- - lib/ssl/api_braintreegateway_com.ca.crt
133
- - spec/spec.opts
134
- - spec/hacks/tcp_socket.rb
132
+ - lib/ssl/www_braintreegateway_com.ca.crt
135
133
  - spec/script/httpsd.rb
136
- - spec/spec_helper.rb
137
- - spec/unit/spec_helper.rb
138
- - spec/unit/braintree_spec.rb
139
- - spec/unit/braintree/transaction_search_spec.rb
140
- - spec/unit/braintree/base_module_spec.rb
141
- - spec/unit/braintree/xml_spec.rb
142
- - spec/unit/braintree/subscription_spec.rb
143
- - spec/unit/braintree/signature_service_spec.rb
144
- - spec/unit/braintree/dispute_spec.rb
145
- - spec/unit/braintree/credit_card_verification_search_spec.rb
146
- - spec/unit/braintree/disbursement_spec.rb
134
+ - spec/httpsd.pid
135
+ - spec/hacks/tcp_socket.rb
147
136
  - spec/unit/braintree/configuration_spec.rb
148
- - spec/unit/braintree/modification_spec.rb
149
- - spec/unit/braintree/transaction_spec.rb
150
- - spec/unit/braintree/error_result_spec.rb
151
- - spec/unit/braintree/paypal_account_spec.rb
152
- - spec/unit/braintree/credit_card_verification_spec.rb
153
- - spec/unit/braintree/subscription_search_spec.rb
154
- - spec/unit/braintree/transaction/customer_details_spec.rb
155
- - spec/unit/braintree/transaction/deposit_details_spec.rb
156
- - spec/unit/braintree/transaction/credit_card_details_spec.rb
157
- - spec/unit/braintree/transparent_redirect_spec.rb
158
- - spec/unit/braintree/errors_spec.rb
137
+ - spec/unit/braintree/credit_card_spec.rb
138
+ - spec/unit/braintree/risk_data_spec.rb
159
139
  - spec/unit/braintree/digest_spec.rb
160
- - spec/unit/braintree/http_spec.rb
140
+ - spec/unit/braintree/client_token_spec.rb
141
+ - spec/unit/braintree/payment_method_spec.rb
142
+ - spec/unit/braintree/transaction_spec.rb
143
+ - spec/unit/braintree/address_spec.rb
161
144
  - spec/unit/braintree/successful_result_spec.rb
162
145
  - spec/unit/braintree/util_spec.rb
163
- - spec/unit/braintree/validation_error_spec.rb
164
- - spec/unit/braintree/sha256_digest_spec.rb
165
- - spec/unit/braintree/address_spec.rb
146
+ - spec/unit/braintree/transparent_redirect_spec.rb
147
+ - spec/unit/braintree/modification_spec.rb
166
148
  - spec/unit/braintree/unknown_payment_method_spec.rb
167
- - spec/unit/braintree/risk_data_spec.rb
168
- - spec/unit/braintree/customer_spec.rb
149
+ - spec/unit/braintree/sha256_digest_spec.rb
150
+ - spec/unit/braintree/base_module_spec.rb
151
+ - spec/unit/braintree/xml_spec.rb
152
+ - spec/unit/braintree/validation_error_spec.rb
153
+ - spec/unit/braintree/credit_card_verification_search_spec.rb
154
+ - spec/unit/braintree/subscription_search_spec.rb
155
+ - spec/unit/braintree/xml/libxml_spec.rb
169
156
  - spec/unit/braintree/xml/parser_spec.rb
170
157
  - spec/unit/braintree/xml/rexml_spec.rb
171
- - spec/unit/braintree/xml/libxml_spec.rb
172
- - spec/unit/braintree/validation_error_collection_spec.rb
173
- - spec/unit/braintree/client_token_spec.rb
174
- - spec/unit/braintree/webhook_notification_spec.rb
175
- - spec/unit/braintree/payment_method_spec.rb
158
+ - spec/unit/braintree/http_spec.rb
159
+ - spec/unit/braintree/errors_spec.rb
176
160
  - spec/unit/braintree/merchant_account_spec.rb
161
+ - spec/unit/braintree/dispute_spec.rb
162
+ - spec/unit/braintree/signature_service_spec.rb
163
+ - spec/unit/braintree/customer_spec.rb
164
+ - spec/unit/braintree/transaction_search_spec.rb
165
+ - spec/unit/braintree/subscription_spec.rb
166
+ - spec/unit/braintree/paypal_account_spec.rb
167
+ - spec/unit/braintree/webhook_notification_spec.rb
168
+ - spec/unit/braintree/transaction/deposit_details_spec.rb
169
+ - spec/unit/braintree/transaction/credit_card_details_spec.rb
170
+ - spec/unit/braintree/transaction/customer_details_spec.rb
171
+ - spec/unit/braintree/validation_error_collection_spec.rb
172
+ - spec/unit/braintree/credit_card_verification_spec.rb
173
+ - spec/unit/braintree/error_result_spec.rb
174
+ - spec/unit/braintree/disbursement_spec.rb
177
175
  - spec/unit/braintree/resource_collection_spec.rb
178
- - spec/unit/braintree/credit_card_spec.rb
179
- - spec/integration/spec_helper.rb
180
- - spec/integration/braintree/transaction_search_spec.rb
181
- - spec/integration/braintree/subscription_spec.rb
182
- - spec/integration/braintree/credit_card_verification_search_spec.rb
183
- - spec/integration/braintree/disbursement_spec.rb
184
- - spec/integration/braintree/client_api/spec_helper.rb
176
+ - spec/unit/braintree_spec.rb
177
+ - spec/unit/spec_helper.rb
178
+ - spec/spec.opts
179
+ - spec/ssl/certificate.crt
180
+ - spec/ssl/privateKey.key
181
+ - spec/ssl/geotrust_global.crt
182
+ - spec/integration/braintree/plan_spec.rb
183
+ - spec/integration/braintree/credit_card_spec.rb
185
184
  - spec/integration/braintree/client_api/client_token_spec.rb
186
- - spec/integration/braintree/discount_spec.rb
185
+ - spec/integration/braintree/client_api/spec_helper.rb
186
+ - spec/integration/braintree/payment_method_spec.rb
187
187
  - spec/integration/braintree/transaction_spec.rb
188
- - spec/integration/braintree/customer_search_spec.rb
189
- - spec/integration/braintree/paypal_account_spec.rb
190
- - spec/integration/braintree/credit_card_verification_spec.rb
188
+ - spec/integration/braintree/address_spec.rb
191
189
  - spec/integration/braintree/transparent_redirect_spec.rb
192
- - spec/integration/braintree/test_transaction_spec.rb
190
+ - spec/integration/braintree/credit_card_verification_search_spec.rb
193
191
  - spec/integration/braintree/http_spec.rb
194
- - spec/integration/braintree/test/transaction_amounts_spec.rb
195
- - spec/integration/braintree/address_spec.rb
196
- - spec/integration/braintree/advanced_search_spec.rb
197
- - spec/integration/braintree/customer_spec.rb
198
- - spec/integration/braintree/payment_method_spec.rb
199
192
  - spec/integration/braintree/merchant_account_spec.rb
200
- - spec/integration/braintree/plan_spec.rb
193
+ - spec/integration/braintree/customer_spec.rb
194
+ - spec/integration/braintree/transaction_search_spec.rb
195
+ - spec/integration/braintree/subscription_spec.rb
196
+ - spec/integration/braintree/settlement_batch_summary_spec.rb
197
+ - spec/integration/braintree/advanced_search_spec.rb
198
+ - spec/integration/braintree/paypal_account_spec.rb
199
+ - spec/integration/braintree/test_transaction_spec.rb
200
+ - spec/integration/braintree/credit_card_verification_spec.rb
201
+ - spec/integration/braintree/discount_spec.rb
202
+ - spec/integration/braintree/customer_search_spec.rb
201
203
  - spec/integration/braintree/add_on_spec.rb
204
+ - spec/integration/braintree/disbursement_spec.rb
205
+ - spec/integration/braintree/test/transaction_amounts_spec.rb
202
206
  - spec/integration/braintree/error_codes_spec.rb
203
- - spec/integration/braintree/settlement_batch_summary_spec.rb
204
- - spec/integration/braintree/credit_card_spec.rb
205
- - spec/httpsd.pid
206
- - spec/ssl/geotrust_global.crt
207
- - spec/ssl/certificate.crt
208
- - spec/ssl/privateKey.key
207
+ - spec/integration/spec_helper.rb
208
+ - spec/spec_helper.rb
209
209
  - braintree.gemspec
210
210
  homepage: http://www.braintreepayments.com/
211
211
  licenses: