activemerchant 1.45.0 → 1.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +3 -1
- data.tar.gz.sig +0 -0
- data/CHANGELOG +25 -0
- data/CONTRIBUTORS +9 -0
- data/README.md +6 -20
- data/lib/active_merchant.rb +9 -50
- data/lib/active_merchant/billing.rb +1 -0
- data/lib/active_merchant/billing/gateway.rb +10 -1
- data/lib/active_merchant/billing/gateways.rb +6 -11
- data/lib/active_merchant/billing/gateways/authorize_net.rb +58 -47
- data/lib/active_merchant/billing/gateways/beanstream.rb +1 -1
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +8 -8
- data/lib/active_merchant/billing/gateways/braintree.rb +2 -2
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +69 -22
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +2 -2
- data/lib/active_merchant/billing/gateways/checkout.rb +7 -2
- data/lib/active_merchant/billing/gateways/cyber_source.rb +25 -9
- data/lib/active_merchant/billing/gateways/elavon.rb +1 -1
- data/lib/active_merchant/billing/gateways/eway_rapid.rb +6 -3
- data/lib/active_merchant/billing/gateways/finansbank.rb +1 -1
- data/lib/active_merchant/billing/gateways/hps.rb +0 -1
- data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +1 -1
- data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +0 -0
- data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +1 -1
- data/lib/active_merchant/billing/gateways/instapay.rb +0 -0
- data/lib/active_merchant/billing/gateways/ipp.rb +175 -0
- data/lib/active_merchant/billing/gateways/mercury.rb +4 -11
- data/lib/active_merchant/billing/gateways/migs.rb +1 -1
- data/lib/active_merchant/billing/gateways/modern_payments.rb +1 -1
- data/lib/active_merchant/billing/gateways/orbital.rb +2 -2
- data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +26 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +3 -3
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +16 -5
- data/lib/active_merchant/billing/gateways/payflow_express.rb +3 -3
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +2 -2
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +4 -4
- data/lib/active_merchant/billing/gateways/paypal.rb +15 -3
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +10 -1
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +1 -1
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +1 -1
- data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +3 -3
- data/lib/active_merchant/billing/gateways/paypal_express.rb +4 -4
- data/lib/active_merchant/billing/gateways/pin.rb +10 -1
- data/lib/active_merchant/billing/gateways/quickbooks.rb +278 -0
- data/lib/active_merchant/billing/gateways/redsys.rb +2 -2
- data/lib/active_merchant/billing/gateways/sage.rb +3 -3
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +1 -1
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +1 -1
- data/lib/active_merchant/billing/gateways/secure_pay.rb +1 -1
- data/lib/active_merchant/billing/gateways/skip_jack.rb +0 -1
- data/lib/active_merchant/billing/gateways/stripe.rb +13 -2
- data/lib/active_merchant/billing/gateways/wirecard.rb +0 -1
- data/lib/active_merchant/billing/payment_token.rb +1 -1
- data/lib/active_merchant/connection.rb +169 -0
- data/lib/active_merchant/network_connection_retries.rb +78 -0
- data/lib/active_merchant/post_data.rb +24 -0
- data/lib/active_merchant/posts_data.rb +78 -0
- data/lib/active_merchant/version.rb +1 -1
- data/lib/certs/cacert.pem +3866 -0
- metadata +22 -44
- metadata.gz.sig +0 -0
- data/lib/active_merchant/offsite_payments_shim.rb +0 -19
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activemerchant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.46.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Luetke
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
30
30
|
fl3hbtVFTqbOlwL9vy1fudXcolIE/ZTcxQ+er07ZFZdKCXayR9PPs64heamfn0fp
|
31
31
|
TConQSX2BnZdhIEYW+cKzEC/bLc=
|
32
32
|
-----END CERTIFICATE-----
|
33
|
-
date:
|
33
|
+
date: 2015-01-21 00:00:00.000000000 Z
|
34
34
|
dependencies:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: activesupport
|
@@ -86,34 +86,6 @@ dependencies:
|
|
86
86
|
- - "<"
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: 4.0.0
|
89
|
-
- !ruby/object:Gem::Dependency
|
90
|
-
name: json
|
91
|
-
requirement: !ruby/object:Gem::Requirement
|
92
|
-
requirements:
|
93
|
-
- - "~>"
|
94
|
-
- !ruby/object:Gem::Version
|
95
|
-
version: '1.7'
|
96
|
-
type: :runtime
|
97
|
-
prerelease: false
|
98
|
-
version_requirements: !ruby/object:Gem::Requirement
|
99
|
-
requirements:
|
100
|
-
- - "~>"
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: '1.7'
|
103
|
-
- !ruby/object:Gem::Dependency
|
104
|
-
name: active_utils
|
105
|
-
requirement: !ruby/object:Gem::Requirement
|
106
|
-
requirements:
|
107
|
-
- - "~>"
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
version: 2.2.0
|
110
|
-
type: :runtime
|
111
|
-
prerelease: false
|
112
|
-
version_requirements: !ruby/object:Gem::Requirement
|
113
|
-
requirements:
|
114
|
-
- - "~>"
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
version: 2.2.0
|
117
89
|
- !ruby/object:Gem::Dependency
|
118
90
|
name: nokogiri
|
119
91
|
requirement: !ruby/object:Gem::Requirement
|
@@ -129,47 +101,47 @@ dependencies:
|
|
129
101
|
- !ruby/object:Gem::Version
|
130
102
|
version: '1.4'
|
131
103
|
- !ruby/object:Gem::Dependency
|
132
|
-
name:
|
104
|
+
name: rake
|
133
105
|
requirement: !ruby/object:Gem::Requirement
|
134
106
|
requirements:
|
135
|
-
- - "
|
107
|
+
- - ">="
|
136
108
|
- !ruby/object:Gem::Version
|
137
|
-
version:
|
138
|
-
type: :
|
109
|
+
version: '0'
|
110
|
+
type: :development
|
139
111
|
prerelease: false
|
140
112
|
version_requirements: !ruby/object:Gem::Requirement
|
141
113
|
requirements:
|
142
|
-
- - "
|
114
|
+
- - ">="
|
143
115
|
- !ruby/object:Gem::Version
|
144
|
-
version:
|
116
|
+
version: '0'
|
145
117
|
- !ruby/object:Gem::Dependency
|
146
|
-
name:
|
118
|
+
name: test-unit
|
147
119
|
requirement: !ruby/object:Gem::Requirement
|
148
120
|
requirements:
|
149
|
-
- - "
|
121
|
+
- - "~>"
|
150
122
|
- !ruby/object:Gem::Version
|
151
|
-
version: '
|
123
|
+
version: '3'
|
152
124
|
type: :development
|
153
125
|
prerelease: false
|
154
126
|
version_requirements: !ruby/object:Gem::Requirement
|
155
127
|
requirements:
|
156
|
-
- - "
|
128
|
+
- - "~>"
|
157
129
|
- !ruby/object:Gem::Version
|
158
|
-
version: '
|
130
|
+
version: '3'
|
159
131
|
- !ruby/object:Gem::Dependency
|
160
132
|
name: mocha
|
161
133
|
requirement: !ruby/object:Gem::Requirement
|
162
134
|
requirements:
|
163
135
|
- - "~>"
|
164
136
|
- !ruby/object:Gem::Version
|
165
|
-
version:
|
137
|
+
version: '1'
|
166
138
|
type: :development
|
167
139
|
prerelease: false
|
168
140
|
version_requirements: !ruby/object:Gem::Requirement
|
169
141
|
requirements:
|
170
142
|
- - "~>"
|
171
143
|
- !ruby/object:Gem::Version
|
172
|
-
version:
|
144
|
+
version: '1'
|
173
145
|
- !ruby/object:Gem::Dependency
|
174
146
|
name: rails
|
175
147
|
requirement: !ruby/object:Gem::Requirement
|
@@ -283,6 +255,7 @@ files:
|
|
283
255
|
- lib/active_merchant/billing/gateways/ideal_rabobank.rb
|
284
256
|
- lib/active_merchant/billing/gateways/inspire.rb
|
285
257
|
- lib/active_merchant/billing/gateways/instapay.rb
|
258
|
+
- lib/active_merchant/billing/gateways/ipp.rb
|
286
259
|
- lib/active_merchant/billing/gateways/iridium.rb
|
287
260
|
- lib/active_merchant/billing/gateways/itransact.rb
|
288
261
|
- lib/active_merchant/billing/gateways/jetpay.rb
|
@@ -348,6 +321,7 @@ files:
|
|
348
321
|
- lib/active_merchant/billing/gateways/psl_card.rb
|
349
322
|
- lib/active_merchant/billing/gateways/qbms.rb
|
350
323
|
- lib/active_merchant/billing/gateways/quantum.rb
|
324
|
+
- lib/active_merchant/billing/gateways/quickbooks.rb
|
351
325
|
- lib/active_merchant/billing/gateways/quickpay.rb
|
352
326
|
- lib/active_merchant/billing/gateways/realex.rb
|
353
327
|
- lib/active_merchant/billing/gateways/redsys.rb
|
@@ -388,12 +362,16 @@ files:
|
|
388
362
|
- lib/active_merchant/billing/payment_token.rb
|
389
363
|
- lib/active_merchant/billing/rails.rb
|
390
364
|
- lib/active_merchant/billing/response.rb
|
365
|
+
- lib/active_merchant/connection.rb
|
391
366
|
- lib/active_merchant/country.rb
|
392
367
|
- lib/active_merchant/empty.rb
|
393
368
|
- lib/active_merchant/errors.rb
|
394
|
-
- lib/active_merchant/
|
369
|
+
- lib/active_merchant/network_connection_retries.rb
|
370
|
+
- lib/active_merchant/post_data.rb
|
371
|
+
- lib/active_merchant/posts_data.rb
|
395
372
|
- lib/active_merchant/version.rb
|
396
373
|
- lib/activemerchant.rb
|
374
|
+
- lib/certs/cacert.pem
|
397
375
|
- lib/support/gateway_support.rb
|
398
376
|
- lib/support/outbound_hosts.rb
|
399
377
|
- lib/support/ssl_verify.rb
|
metadata.gz.sig
CHANGED
Binary file
|
@@ -1,19 +0,0 @@
|
|
1
|
-
require "offsite_payments"
|
2
|
-
|
3
|
-
module ActiveMerchant
|
4
|
-
module OffsitePaymentsShim
|
5
|
-
ActionViewHelper = ::OffsitePayments::ActionViewHelper
|
6
|
-
Helper = ::OffsitePayments::Helper
|
7
|
-
Notification = ::OffsitePayments::Notification
|
8
|
-
Return = ::OffsitePayments::Return
|
9
|
-
ActionViewHelperError = ::OffsitePayments::ActionViewHelperError
|
10
|
-
|
11
|
-
include ::OffsitePayments::Integrations
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
module OffsitePayments
|
16
|
-
def self.mode
|
17
|
-
ActiveMerchant::Billing::Base.integration_mode
|
18
|
-
end
|
19
|
-
end
|