activemerchant 1.21.0 → 1.22.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.
- data.tar.gz.sig +0 -0
- data/CHANGELOG +63 -0
- data/CONTRIBUTORS +29 -0
- data/README.md +195 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +2 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq.rb +2 -2
- data/lib/active_merchant/billing/gateways/blue_pay.rb +492 -11
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +46 -19
- data/lib/active_merchant/billing/gateways/certo_direct.rb +1 -1
- data/lib/active_merchant/billing/gateways/cyber_source.rb +342 -106
- data/lib/active_merchant/billing/gateways/elavon.rb +2 -0
- data/lib/active_merchant/billing/gateways/epay.rb +3 -1
- data/lib/active_merchant/billing/gateways/itransact.rb +450 -0
- data/lib/active_merchant/billing/gateways/migs.rb +259 -0
- data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
- data/lib/active_merchant/billing/gateways/moneris_us.rb +211 -0
- data/lib/active_merchant/billing/gateways/ogone.rb +104 -12
- data/lib/active_merchant/billing/gateways/orbital.rb +15 -6
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +1 -4
- data/lib/active_merchant/billing/gateways/payflow.rb +8 -3
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +4 -1
- data/lib/active_merchant/billing/gateways/payflow_express.rb +4 -2
- data/lib/active_merchant/billing/gateways/payment_express.rb +1 -1
- data/lib/active_merchant/billing/gateways/paypal.rb +3 -18
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +287 -1
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +245 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +14 -66
- data/lib/active_merchant/billing/gateways/realex.rb +5 -7
- data/lib/active_merchant/billing/gateways/stripe.rb +1 -9
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +2 -2
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +1 -5
- data/lib/active_merchant/billing/gateways/viaklix.rb +7 -2
- data/lib/active_merchant/billing/gateways/vindicia.rb +359 -0
- data/lib/active_merchant/billing/integrations/dotpay.rb +22 -0
- data/lib/active_merchant/billing/integrations/dotpay/helper.rb +77 -0
- data/lib/active_merchant/billing/integrations/dotpay/notification.rb +86 -0
- data/lib/active_merchant/billing/integrations/dotpay/return.rb +11 -0
- data/lib/active_merchant/billing/integrations/epay.rb +21 -0
- data/lib/active_merchant/billing/integrations/epay/helper.rb +55 -0
- data/lib/active_merchant/billing/integrations/epay/notification.rb +110 -0
- data/lib/active_merchant/billing/integrations/paypal/notification.rb +2 -1
- data/lib/active_merchant/billing/integrations/quickpay/helper.rb +2 -3
- data/lib/active_merchant/billing/integrations/robokassa.rb +49 -0
- data/lib/active_merchant/billing/integrations/robokassa/common.rb +19 -0
- data/lib/active_merchant/billing/integrations/robokassa/helper.rb +50 -0
- data/lib/active_merchant/billing/integrations/robokassa/notification.rb +55 -0
- data/lib/active_merchant/billing/integrations/robokassa/return.rb +17 -0
- data/lib/active_merchant/billing/integrations/two_checkout.rb +25 -3
- data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +15 -0
- data/lib/active_merchant/billing/integrations/verkkomaksut.rb +20 -0
- data/lib/active_merchant/billing/integrations/verkkomaksut/helper.rb +87 -0
- data/lib/active_merchant/billing/integrations/verkkomaksut/notification.rb +59 -0
- data/lib/active_merchant/version.rb +1 -1
- metadata +59 -26
- metadata.gz.sig +0 -0
@@ -0,0 +1,17 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
module Integrations #:nodoc:
|
4
|
+
module Robokassa
|
5
|
+
class Return < ActiveMerchant::Billing::Integrations::Return
|
6
|
+
def item_id
|
7
|
+
@params['InvId']
|
8
|
+
end
|
9
|
+
|
10
|
+
def amount
|
11
|
+
@params['OutSum']
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -6,9 +6,31 @@ module ActiveMerchant #:nodoc:
|
|
6
6
|
autoload 'Return', File.dirname(__FILE__) + '/two_checkout/return'
|
7
7
|
autoload 'Notification', File.dirname(__FILE__) + '/two_checkout/notification'
|
8
8
|
|
9
|
-
mattr_accessor :
|
10
|
-
self.
|
11
|
-
|
9
|
+
mattr_accessor :payment_routine
|
10
|
+
self.payment_routine = :multi_page
|
11
|
+
|
12
|
+
def self.service_url
|
13
|
+
case self.payment_routine
|
14
|
+
when :multi_page
|
15
|
+
'https://www.2checkout.com/checkout/purchase'
|
16
|
+
when :single_page
|
17
|
+
'https://www.2checkout.com/checkout/spurchase'
|
18
|
+
else
|
19
|
+
raise StandardError, "Integration payment routine set to an invalid value: #{self.payment_routine}"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.service_url=(service_url)
|
24
|
+
# Note: do not use this method, it is here for backward compatibility
|
25
|
+
# Use the payment_routine method to change service_url
|
26
|
+
if service_url =~ /spurchase/
|
27
|
+
self.payment_routine = :single_page
|
28
|
+
else
|
29
|
+
self.payment_routine = :multi_page
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
|
12
34
|
def self.notification(post, options = {})
|
13
35
|
Notification.new(post)
|
14
36
|
end
|
@@ -21,6 +21,7 @@ module ActiveMerchant #:nodoc:
|
|
21
21
|
# a unique order id from your program. (128 characters max)
|
22
22
|
mapping :order, 'cart_order_id'
|
23
23
|
|
24
|
+
mapping :mode, 'mode'
|
24
25
|
|
25
26
|
mapping :customer, :email => 'email',
|
26
27
|
:phone => 'phone'
|
@@ -52,6 +53,20 @@ module ActiveMerchant #:nodoc:
|
|
52
53
|
add_field(mappings[:customer][:phone], params[:phone])
|
53
54
|
add_field('card_holder_name', "#{params[:first_name]} #{params[:last_name]}")
|
54
55
|
end
|
56
|
+
|
57
|
+
def line_item(params = {})
|
58
|
+
max_existing_line_item_id = form_fields.keys.map do |key|
|
59
|
+
match = key.to_s.match(/li_(\d+)_/)
|
60
|
+
if match
|
61
|
+
match[1]
|
62
|
+
end
|
63
|
+
end.reject(&:nil?).max.to_i
|
64
|
+
|
65
|
+
line_item_id = max_existing_line_item_id + 1
|
66
|
+
params.each do |key, value|
|
67
|
+
add_field("li_#{line_item_id}_#{key}", value)
|
68
|
+
end
|
69
|
+
end
|
55
70
|
end
|
56
71
|
end
|
57
72
|
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/verkkomaksut/helper.rb'
|
2
|
+
require File.dirname(__FILE__) + '/verkkomaksut/notification.rb'
|
3
|
+
|
4
|
+
module ActiveMerchant #:nodoc:
|
5
|
+
module Billing #:nodoc:
|
6
|
+
module Integrations #:nodoc:
|
7
|
+
|
8
|
+
# Usage, see the blog post here: http://blog.kiskolabs.com/post/22374612968/understanding-active-merchant-integrations and E1 API documentation here: http://docs.verkkomaksut.fi/
|
9
|
+
module Verkkomaksut
|
10
|
+
|
11
|
+
mattr_accessor :service_url
|
12
|
+
self.service_url = 'https://payment.verkkomaksut.fi/'
|
13
|
+
|
14
|
+
def self.notification(post)
|
15
|
+
Notification.new(post)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,87 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
module Integrations #:nodoc:
|
4
|
+
module Verkkomaksut
|
5
|
+
class Helper < ActiveMerchant::Billing::Integrations::Helper
|
6
|
+
|
7
|
+
# Fetches the md5secret and adds MERCHANT_ID and API TYPE to the form
|
8
|
+
def initialize(order, account, options = {})
|
9
|
+
md5secret options.delete(:credential2)
|
10
|
+
super
|
11
|
+
add_field("MERCHANT_ID", account)
|
12
|
+
add_field("TYPE", "E1")
|
13
|
+
end
|
14
|
+
|
15
|
+
def md5secret(value)
|
16
|
+
@md5secret = value
|
17
|
+
end
|
18
|
+
|
19
|
+
# Adds the AUTHCODE to the form
|
20
|
+
def form_fields
|
21
|
+
@fields.merge("AUTHCODE" => generate_md5string)
|
22
|
+
end
|
23
|
+
|
24
|
+
# Calculates the AUTHCODE
|
25
|
+
def generate_md5string
|
26
|
+
fields = [@md5secret, @fields["MERCHANT_ID"], @fields["ORDER_NUMBER"], @fields["REFERENCE_NUMBER"], @fields["ORDER_DESCRIPTION"], @fields["CURRENCY"], @fields["RETURN_ADDRESS"], @fields["CANCEL_ADDRESS"], @fields["PENDING_ADDRESS"],
|
27
|
+
@fields["NOTIFY_ADDRESS"], @fields["TYPE"], @fields["CULTURE"], @fields["PRESELECTED_METHOD"], @fields["MODE"], @fields["VISIBLE_METHODS"], @fields["GROUP"], @fields["CONTACT_TELNO"], @fields["CONTACT_CELLNO"],
|
28
|
+
@fields["CONTACT_EMAIL"], @fields["CONTACT_FIRSTNAME"], @fields["CONTACT_LASTNAME"], @fields["CONTACT_COMPANY"], @fields["CONTACT_ADDR_STREET"], @fields["CONTACT_ADDR_ZIP"], @fields["CONTACT_ADDR_CITY"], @fields["CONTACT_ADDR_COUNTRY"], @fields["INCLUDE_VAT"],
|
29
|
+
@fields["ITEMS"]]
|
30
|
+
|
31
|
+
(0..@fields["ITEMS"].to_i-1).each do |i|
|
32
|
+
fields += [@fields["ITEM_TITLE[#{i}]"], @fields["ITEM_NO[#{i}]"], @fields["ITEM_AMOUNT[#{i}]"], @fields["ITEM_PRICE[#{i}]"], @fields["ITEM_TAX[#{i}]"], @fields["ITEM_DISCOUNT[#{i}]"], @fields["ITEM_TYPE[#{i}]"]]
|
33
|
+
end
|
34
|
+
|
35
|
+
fields = fields.join("|")
|
36
|
+
|
37
|
+
return Digest::MD5.hexdigest(fields).upcase
|
38
|
+
end
|
39
|
+
|
40
|
+
# Mappings
|
41
|
+
mapping :merchant_id, "MERCHANT_ID"
|
42
|
+
mapping :order, "ORDER_NUMBER"
|
43
|
+
mapping :reference_number, "REFERENCE_NUMBER"
|
44
|
+
mapping :customer, :first_name => "CONTACT_FIRSTNAME",
|
45
|
+
:last_name => "CONTACT_LASTNAME",
|
46
|
+
:email => "CONTACT_EMAIL",
|
47
|
+
:phone => "CONTACT_CELLNO",
|
48
|
+
:tellno => "CONTACT_TELLNO",
|
49
|
+
:company => "CONTACT_COMPANY"
|
50
|
+
|
51
|
+
|
52
|
+
mapping :billing_address, :city => "CONTACT_ADDR_CITY",
|
53
|
+
:address1 => "CONTACT_ADDR_STREET",
|
54
|
+
:address2 => "",
|
55
|
+
:state => "",
|
56
|
+
:zip => "CONTACT_ADDR_ZIP",
|
57
|
+
:country => "CONTACT_ADDR_COUNTRY"
|
58
|
+
|
59
|
+
mapping :notify_url, "NOTIFY_ADDRESS"
|
60
|
+
mapping :currency, "CURRENCY"
|
61
|
+
mapping :return_url, "RETURN_ADDRESS"
|
62
|
+
mapping :cancel_return_url, "CANCEL_ADDRESS"
|
63
|
+
mapping :description, "ORDER_DESCRIPTION"
|
64
|
+
mapping :tax, ""
|
65
|
+
mapping :shipping, ""
|
66
|
+
mapping :include_vat, "INCLUDE_VAT"
|
67
|
+
mapping :pending_address, "PENDING_ADDRESS"
|
68
|
+
mapping :culture, "CULTURE"
|
69
|
+
mapping :items, "ITEMS"
|
70
|
+
mapping :preselected_method, "PRESELECTED_METHOD"
|
71
|
+
mapping :mode, "MODE"
|
72
|
+
mapping :visible_methods, "VISIBLE_METHODS"
|
73
|
+
mapping :group, "GROUP"
|
74
|
+
|
75
|
+
(0..499.to_i).each do |i|
|
76
|
+
mapping "item_no_#{i}".to_sym, "ITEM_NO[#{i}]"
|
77
|
+
mapping "item_amount_#{i}".to_sym, "ITEM_AMOUNT[#{i}]"
|
78
|
+
mapping "item_price_#{i}".to_sym, "ITEM_PRICE[#{i}]"
|
79
|
+
mapping "item_tax_#{i}".to_sym, "ITEM_TAX[#{i}]"
|
80
|
+
mapping "item_discount_#{i}".to_sym, "ITEM_DISCOUNT[#{i}]"
|
81
|
+
mapping "item_type_#{i}".to_sym, "ITEM_TYPE[#{i}]"
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
module Integrations #:nodoc:
|
6
|
+
module Verkkomaksut
|
7
|
+
class Notification < ActiveMerchant::Billing::Integrations::Notification
|
8
|
+
|
9
|
+
# Is the payment complete or not. Verkkomaksut only has two statuses: random string or 0000000000 which means pending
|
10
|
+
def complete?
|
11
|
+
params['PAID'] != "0000000000"
|
12
|
+
end
|
13
|
+
|
14
|
+
# Order id
|
15
|
+
def order_id
|
16
|
+
params['ORDER_NUMBER']
|
17
|
+
end
|
18
|
+
|
19
|
+
# Payment method used
|
20
|
+
def method
|
21
|
+
params['METHOD']
|
22
|
+
end
|
23
|
+
|
24
|
+
# When was this payment received by the client.
|
25
|
+
def received_at
|
26
|
+
params['TIMESTAMP']
|
27
|
+
end
|
28
|
+
|
29
|
+
# Security key got from Verkkomaksut
|
30
|
+
def security_key
|
31
|
+
params['RETURN_AUTHCODE']
|
32
|
+
end
|
33
|
+
|
34
|
+
# Another way of asking the payment status
|
35
|
+
def status
|
36
|
+
if complete?
|
37
|
+
"PAID"
|
38
|
+
else
|
39
|
+
"PENDING"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
# Acknowldges the payment. If the authcodes match, returns true.
|
44
|
+
def acknowledge(authcode)
|
45
|
+
return_authcode = [params["ORDER_NUMBER"], params["TIMESTAMP"], params["PAID"], params["METHOD"], authcode].join("|")
|
46
|
+
Digest::MD5.hexdigest(return_authcode).upcase == params["RETURN_AUTHCODE"]
|
47
|
+
end
|
48
|
+
private
|
49
|
+
|
50
|
+
def parse(post)
|
51
|
+
post.each do |key, value|
|
52
|
+
params[key] = value
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
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.22.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -50,11 +50,11 @@ cert_chain:
|
|
50
50
|
-----END CERTIFICATE-----
|
51
51
|
|
52
52
|
'
|
53
|
-
date: 2012-
|
53
|
+
date: 2012-05-17 00:00:00.000000000 Z
|
54
54
|
dependencies:
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: activesupport
|
57
|
-
requirement: &
|
57
|
+
requirement: &2153311280 !ruby/object:Gem::Requirement
|
58
58
|
none: false
|
59
59
|
requirements:
|
60
60
|
- - ! '>='
|
@@ -62,10 +62,10 @@ dependencies:
|
|
62
62
|
version: 2.3.11
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
|
-
version_requirements: *
|
65
|
+
version_requirements: *2153311280
|
66
66
|
- !ruby/object:Gem::Dependency
|
67
67
|
name: i18n
|
68
|
-
requirement: &
|
68
|
+
requirement: &2153310640 !ruby/object:Gem::Requirement
|
69
69
|
none: false
|
70
70
|
requirements:
|
71
71
|
- - ! '>='
|
@@ -73,21 +73,21 @@ dependencies:
|
|
73
73
|
version: '0'
|
74
74
|
type: :runtime
|
75
75
|
prerelease: false
|
76
|
-
version_requirements: *
|
76
|
+
version_requirements: *2153310640
|
77
77
|
- !ruby/object:Gem::Dependency
|
78
78
|
name: money
|
79
|
-
requirement: &
|
79
|
+
requirement: &2153310060 !ruby/object:Gem::Requirement
|
80
80
|
none: false
|
81
81
|
requirements:
|
82
|
-
- -
|
82
|
+
- - ! '>='
|
83
83
|
- !ruby/object:Gem::Version
|
84
|
-
version:
|
84
|
+
version: '0'
|
85
85
|
type: :runtime
|
86
86
|
prerelease: false
|
87
|
-
version_requirements: *
|
87
|
+
version_requirements: *2153310060
|
88
88
|
- !ruby/object:Gem::Dependency
|
89
89
|
name: builder
|
90
|
-
requirement: &
|
90
|
+
requirement: &2153309500 !ruby/object:Gem::Requirement
|
91
91
|
none: false
|
92
92
|
requirements:
|
93
93
|
- - ! '>='
|
@@ -95,10 +95,10 @@ dependencies:
|
|
95
95
|
version: 2.0.0
|
96
96
|
type: :runtime
|
97
97
|
prerelease: false
|
98
|
-
version_requirements: *
|
98
|
+
version_requirements: *2153309500
|
99
99
|
- !ruby/object:Gem::Dependency
|
100
100
|
name: json
|
101
|
-
requirement: &
|
101
|
+
requirement: &2153309000 !ruby/object:Gem::Requirement
|
102
102
|
none: false
|
103
103
|
requirements:
|
104
104
|
- - ! '>='
|
@@ -106,10 +106,10 @@ dependencies:
|
|
106
106
|
version: 1.5.1
|
107
107
|
type: :runtime
|
108
108
|
prerelease: false
|
109
|
-
version_requirements: *
|
109
|
+
version_requirements: *2153309000
|
110
110
|
- !ruby/object:Gem::Dependency
|
111
111
|
name: active_utils
|
112
|
-
requirement: &
|
112
|
+
requirement: &2153324800 !ruby/object:Gem::Requirement
|
113
113
|
none: false
|
114
114
|
requirements:
|
115
115
|
- - ! '>='
|
@@ -117,10 +117,21 @@ dependencies:
|
|
117
117
|
version: 1.0.2
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
|
-
version_requirements: *
|
120
|
+
version_requirements: *2153324800
|
121
|
+
- !ruby/object:Gem::Dependency
|
122
|
+
name: nokogiri
|
123
|
+
requirement: &2153324160 !ruby/object:Gem::Requirement
|
124
|
+
none: false
|
125
|
+
requirements:
|
126
|
+
- - ! '>='
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
version: '0'
|
129
|
+
type: :runtime
|
130
|
+
prerelease: false
|
131
|
+
version_requirements: *2153324160
|
121
132
|
- !ruby/object:Gem::Dependency
|
122
133
|
name: rake
|
123
|
-
requirement: &
|
134
|
+
requirement: &2153323500 !ruby/object:Gem::Requirement
|
124
135
|
none: false
|
125
136
|
requirements:
|
126
137
|
- - ! '>='
|
@@ -128,21 +139,21 @@ dependencies:
|
|
128
139
|
version: '0'
|
129
140
|
type: :development
|
130
141
|
prerelease: false
|
131
|
-
version_requirements: *
|
142
|
+
version_requirements: *2153323500
|
132
143
|
- !ruby/object:Gem::Dependency
|
133
144
|
name: mocha
|
134
|
-
requirement: &
|
145
|
+
requirement: &2153322880 !ruby/object:Gem::Requirement
|
135
146
|
none: false
|
136
147
|
requirements:
|
137
|
-
- -
|
148
|
+
- - ~>
|
138
149
|
- !ruby/object:Gem::Version
|
139
|
-
version:
|
150
|
+
version: 0.11.3
|
140
151
|
type: :development
|
141
152
|
prerelease: false
|
142
|
-
version_requirements: *
|
153
|
+
version_requirements: *2153322880
|
143
154
|
- !ruby/object:Gem::Dependency
|
144
155
|
name: rails
|
145
|
-
requirement: &
|
156
|
+
requirement: &2153322200 !ruby/object:Gem::Requirement
|
146
157
|
none: false
|
147
158
|
requirements:
|
148
159
|
- - ! '>='
|
@@ -150,10 +161,10 @@ dependencies:
|
|
150
161
|
version: 2.3.11
|
151
162
|
type: :development
|
152
163
|
prerelease: false
|
153
|
-
version_requirements: *
|
164
|
+
version_requirements: *2153322200
|
154
165
|
- !ruby/object:Gem::Dependency
|
155
166
|
name: rubigen
|
156
|
-
requirement: &
|
167
|
+
requirement: &2153321560 !ruby/object:Gem::Requirement
|
157
168
|
none: false
|
158
169
|
requirements:
|
159
170
|
- - ! '>='
|
@@ -161,7 +172,7 @@ dependencies:
|
|
161
172
|
version: '0'
|
162
173
|
type: :development
|
163
174
|
prerelease: false
|
164
|
-
version_requirements: *
|
175
|
+
version_requirements: *2153321560
|
165
176
|
description: Active Merchant is a simple payment abstraction library used in and sponsored
|
166
177
|
by Shopify. It is written by Tobias Luetke, Cody Fauser, and contributors. The aim
|
167
178
|
of the project is to feel natural to Ruby users and to abstract as many parts as
|
@@ -173,6 +184,7 @@ extensions: []
|
|
173
184
|
extra_rdoc_files: []
|
174
185
|
files:
|
175
186
|
- CHANGELOG
|
187
|
+
- README.md
|
176
188
|
- MIT-LICENSE
|
177
189
|
- CONTRIBUTORS
|
178
190
|
- gem-public_cert.pem
|
@@ -218,13 +230,17 @@ files:
|
|
218
230
|
- lib/active_merchant/billing/gateways/inspire.rb
|
219
231
|
- lib/active_merchant/billing/gateways/instapay.rb
|
220
232
|
- lib/active_merchant/billing/gateways/iridium.rb
|
233
|
+
- lib/active_merchant/billing/gateways/itransact.rb
|
221
234
|
- lib/active_merchant/billing/gateways/jetpay.rb
|
222
235
|
- lib/active_merchant/billing/gateways/linkpoint.rb
|
223
236
|
- lib/active_merchant/billing/gateways/merchant_e_solutions.rb
|
224
237
|
- lib/active_merchant/billing/gateways/merchant_ware.rb
|
238
|
+
- lib/active_merchant/billing/gateways/migs/migs_codes.rb
|
239
|
+
- lib/active_merchant/billing/gateways/migs.rb
|
225
240
|
- lib/active_merchant/billing/gateways/modern_payments.rb
|
226
241
|
- lib/active_merchant/billing/gateways/modern_payments_cim.rb
|
227
242
|
- lib/active_merchant/billing/gateways/moneris.rb
|
243
|
+
- lib/active_merchant/billing/gateways/moneris_us.rb
|
228
244
|
- lib/active_merchant/billing/gateways/nab_transact.rb
|
229
245
|
- lib/active_merchant/billing/gateways/net_registry.rb
|
230
246
|
- lib/active_merchant/billing/gateways/netaxept.rb
|
@@ -247,6 +263,7 @@ files:
|
|
247
263
|
- lib/active_merchant/billing/gateways/payment_express.rb
|
248
264
|
- lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb
|
249
265
|
- lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb
|
266
|
+
- lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb
|
250
267
|
- lib/active_merchant/billing/gateways/paypal.rb
|
251
268
|
- lib/active_merchant/billing/gateways/paypal_ca.rb
|
252
269
|
- lib/active_merchant/billing/gateways/paypal_digital_goods.rb
|
@@ -282,6 +299,7 @@ files:
|
|
282
299
|
- lib/active_merchant/billing/gateways/usa_epay_transaction.rb
|
283
300
|
- lib/active_merchant/billing/gateways/verifi.rb
|
284
301
|
- lib/active_merchant/billing/gateways/viaklix.rb
|
302
|
+
- lib/active_merchant/billing/gateways/vindicia.rb
|
285
303
|
- lib/active_merchant/billing/gateways/wirecard.rb
|
286
304
|
- lib/active_merchant/billing/gateways/worldpay.rb
|
287
305
|
- lib/active_merchant/billing/gateways.rb
|
@@ -306,6 +324,10 @@ files:
|
|
306
324
|
- lib/active_merchant/billing/integrations/directebanking/notification.rb
|
307
325
|
- lib/active_merchant/billing/integrations/directebanking/return.rb
|
308
326
|
- lib/active_merchant/billing/integrations/directebanking.rb
|
327
|
+
- lib/active_merchant/billing/integrations/dotpay/helper.rb
|
328
|
+
- lib/active_merchant/billing/integrations/dotpay/notification.rb
|
329
|
+
- lib/active_merchant/billing/integrations/dotpay/return.rb
|
330
|
+
- lib/active_merchant/billing/integrations/dotpay.rb
|
309
331
|
- lib/active_merchant/billing/integrations/dwolla/helper.rb
|
310
332
|
- lib/active_merchant/billing/integrations/dwolla/notification.rb
|
311
333
|
- lib/active_merchant/billing/integrations/dwolla/return.rb
|
@@ -313,6 +335,9 @@ files:
|
|
313
335
|
- lib/active_merchant/billing/integrations/e_payment_plans/helper.rb
|
314
336
|
- lib/active_merchant/billing/integrations/e_payment_plans/notification.rb
|
315
337
|
- lib/active_merchant/billing/integrations/e_payment_plans.rb
|
338
|
+
- lib/active_merchant/billing/integrations/epay/helper.rb
|
339
|
+
- lib/active_merchant/billing/integrations/epay/notification.rb
|
340
|
+
- lib/active_merchant/billing/integrations/epay.rb
|
316
341
|
- lib/active_merchant/billing/integrations/gestpay/common.rb
|
317
342
|
- lib/active_merchant/billing/integrations/gestpay/helper.rb
|
318
343
|
- lib/active_merchant/billing/integrations/gestpay/notification.rb
|
@@ -342,6 +367,11 @@ files:
|
|
342
367
|
- lib/active_merchant/billing/integrations/quickpay/notification.rb
|
343
368
|
- lib/active_merchant/billing/integrations/quickpay.rb
|
344
369
|
- lib/active_merchant/billing/integrations/return.rb
|
370
|
+
- lib/active_merchant/billing/integrations/robokassa/common.rb
|
371
|
+
- lib/active_merchant/billing/integrations/robokassa/helper.rb
|
372
|
+
- lib/active_merchant/billing/integrations/robokassa/notification.rb
|
373
|
+
- lib/active_merchant/billing/integrations/robokassa/return.rb
|
374
|
+
- lib/active_merchant/billing/integrations/robokassa.rb
|
345
375
|
- lib/active_merchant/billing/integrations/sage_pay_form/encryption.rb
|
346
376
|
- lib/active_merchant/billing/integrations/sage_pay_form/helper.rb
|
347
377
|
- lib/active_merchant/billing/integrations/sage_pay_form/notification.rb
|
@@ -356,6 +386,9 @@ files:
|
|
356
386
|
- lib/active_merchant/billing/integrations/valitor/response_fields.rb
|
357
387
|
- lib/active_merchant/billing/integrations/valitor/return.rb
|
358
388
|
- lib/active_merchant/billing/integrations/valitor.rb
|
389
|
+
- lib/active_merchant/billing/integrations/verkkomaksut/helper.rb
|
390
|
+
- lib/active_merchant/billing/integrations/verkkomaksut/notification.rb
|
391
|
+
- lib/active_merchant/billing/integrations/verkkomaksut.rb
|
359
392
|
- lib/active_merchant/billing/integrations/world_pay/helper.rb
|
360
393
|
- lib/active_merchant/billing/integrations/world_pay/notification.rb
|
361
394
|
- lib/active_merchant/billing/integrations/world_pay.rb
|