activemerchant 1.29.1 → 1.34.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.
Files changed (92) hide show
  1. data/CHANGELOG +143 -0
  2. data/CONTRIBUTORS +43 -0
  3. data/README.md +59 -51
  4. data/lib/active_merchant/billing/check.rb +15 -14
  5. data/lib/active_merchant/billing/credit_card.rb +14 -5
  6. data/lib/active_merchant/billing/credit_card_formatting.rb +8 -8
  7. data/lib/active_merchant/billing/gateway.rb +2 -2
  8. data/lib/active_merchant/billing/gateways/authorize_net.rb +36 -8
  9. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +17 -5
  10. data/lib/active_merchant/billing/gateways/balanced.rb +9 -3
  11. data/lib/active_merchant/billing/gateways/banwire.rb +15 -1
  12. data/lib/active_merchant/billing/gateways/barclays_epdq.rb +8 -1
  13. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +7 -2
  14. data/lib/active_merchant/billing/gateways/beanstream.rb +26 -24
  15. data/lib/active_merchant/billing/gateways/blue_pay.rb +201 -187
  16. data/lib/active_merchant/billing/gateways/bogus.rb +1 -1
  17. data/lib/active_merchant/billing/gateways/braintree_blue.rb +7 -3
  18. data/lib/active_merchant/billing/gateways/card_stream_modern.rb +155 -0
  19. data/lib/active_merchant/billing/gateways/cc5.rb +156 -0
  20. data/lib/active_merchant/billing/gateways/cyber_source.rb +55 -22
  21. data/lib/active_merchant/billing/gateways/data_cash.rb +3 -3
  22. data/lib/active_merchant/billing/gateways/evo_ca.rb +308 -0
  23. data/lib/active_merchant/billing/gateways/eway.rb +114 -171
  24. data/lib/active_merchant/billing/gateways/eway_managed.rb +52 -22
  25. data/lib/active_merchant/billing/gateways/finansbank.rb +22 -0
  26. data/lib/active_merchant/billing/gateways/firstdata_e4.rb +314 -0
  27. data/lib/active_merchant/billing/gateways/garanti.rb +0 -4
  28. data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +13 -2
  29. data/lib/active_merchant/billing/gateways/iridium.rb +8 -2
  30. data/lib/active_merchant/billing/gateways/litle.rb +354 -105
  31. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +28 -7
  32. data/lib/active_merchant/billing/gateways/merchant_ware.rb +44 -9
  33. data/lib/active_merchant/billing/gateways/merchant_warrior.rb +190 -0
  34. data/lib/active_merchant/billing/gateways/moneris.rb +4 -6
  35. data/lib/active_merchant/billing/gateways/moneris_us.rb +1 -1
  36. data/lib/active_merchant/billing/gateways/nab_transact.rb +20 -3
  37. data/lib/active_merchant/billing/gateways/net_registry.rb +8 -3
  38. data/lib/active_merchant/billing/gateways/netaxept.rb +65 -117
  39. data/lib/active_merchant/billing/gateways/netbilling.rb +1 -0
  40. data/lib/active_merchant/billing/gateways/netpay.rb +223 -0
  41. data/lib/active_merchant/billing/gateways/ogone.rb +7 -5
  42. data/lib/active_merchant/billing/gateways/optimal_payment.rb +43 -18
  43. data/lib/active_merchant/billing/gateways/orbital.rb +190 -53
  44. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +12 -10
  45. data/lib/active_merchant/billing/gateways/payment_express.rb +62 -1
  46. data/lib/active_merchant/billing/gateways/paymill.rb +179 -0
  47. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +12 -7
  48. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +14 -9
  49. data/lib/active_merchant/billing/gateways/paypal_express.rb +59 -18
  50. data/lib/active_merchant/billing/gateways/pin.rb +165 -0
  51. data/lib/active_merchant/billing/gateways/qbms.rb +3 -2
  52. data/lib/active_merchant/billing/gateways/quickpay.rb +66 -28
  53. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +16 -11
  54. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +1 -1
  55. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +21 -16
  56. data/lib/active_merchant/billing/gateways/sage.rb +10 -5
  57. data/lib/active_merchant/billing/gateways/sage_pay.rb +7 -0
  58. data/lib/active_merchant/billing/gateways/smart_ps.rb +1 -1
  59. data/lib/active_merchant/billing/gateways/spreedly_core.rb +233 -0
  60. data/lib/active_merchant/billing/gateways/stripe.rb +49 -21
  61. data/lib/active_merchant/billing/gateways/transnational.rb +239 -0
  62. data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +9 -4
  63. data/lib/active_merchant/billing/gateways/webpay.rb +8 -0
  64. data/lib/active_merchant/billing/gateways/wirecard.rb +15 -9
  65. data/lib/active_merchant/billing/gateways/worldpay.rb +60 -24
  66. data/lib/active_merchant/billing/integrations/direc_pay/status.rb +1 -1
  67. data/lib/active_merchant/billing/integrations/direc_pay.rb +1 -1
  68. data/lib/active_merchant/billing/integrations/dwolla/common.rb +23 -0
  69. data/lib/active_merchant/billing/integrations/dwolla/helper.rb +18 -6
  70. data/lib/active_merchant/billing/integrations/dwolla/notification.rb +16 -7
  71. data/lib/active_merchant/billing/integrations/dwolla/return.rb +16 -5
  72. data/lib/active_merchant/billing/integrations/dwolla.rb +5 -12
  73. data/lib/active_merchant/billing/integrations/notification.rb +13 -8
  74. data/lib/active_merchant/billing/integrations/payflow_link/helper.rb +19 -3
  75. data/lib/active_merchant/billing/integrations/paypal/notification.rb +39 -31
  76. data/lib/active_merchant/billing/integrations/payu_in/helper.rb +74 -0
  77. data/lib/active_merchant/billing/integrations/payu_in/notification.rb +167 -0
  78. data/lib/active_merchant/billing/integrations/payu_in/return.rb +53 -0
  79. data/lib/active_merchant/billing/integrations/payu_in.rb +43 -0
  80. data/lib/active_merchant/billing/integrations/pxpay/helper.rb +1 -0
  81. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +13 -10
  82. data/lib/active_merchant/billing/integrations/quickpay/notification.rb +78 -15
  83. data/lib/active_merchant/billing/integrations/rbkmoney/helper.rb +23 -0
  84. data/lib/active_merchant/billing/integrations/rbkmoney/notification.rb +91 -0
  85. data/lib/active_merchant/billing/integrations/rbkmoney.rb +17 -0
  86. data/lib/active_merchant/billing/integrations/robokassa/common.rb +1 -1
  87. data/lib/active_merchant/billing/integrations/sage_pay_form/helper.rb +7 -3
  88. data/lib/active_merchant/billing/integrations/world_pay.rb +15 -8
  89. data/lib/active_merchant/version.rb +1 -1
  90. data.tar.gz.sig +0 -0
  91. metadata +124 -50
  92. metadata.gz.sig +0 -0
@@ -4,20 +4,27 @@ require File.dirname(__FILE__) + '/world_pay/notification.rb'
4
4
  module ActiveMerchant #:nodoc:
5
5
  module Billing #:nodoc:
6
6
  module Integrations #:nodoc:
7
- module WorldPay
8
-
9
- # production and test have the same endpoint
10
- mattr_accessor :production_url
11
- self.production_url = 'https://secure.wp3.rbsworldpay.com/wcc/purchase'
12
-
7
+ module WorldPay
8
+
9
+ mattr_accessor :production_url, :test_url
10
+ self.production_url = 'https://secure.worldpay.com/wcc/purchase'
11
+ self.test_url = 'https://secure-test.worldpay.com/wcc/purchase'
12
+
13
13
  def self.service_url
14
- production_url
14
+ case ActiveMerchant::Billing::Base.integration_mode
15
+ when :production
16
+ self.production_url
17
+ when :test
18
+ self.test_url
19
+ else
20
+ raise StandardError, "Integration mode set to an invalid value: #{mode}"
21
+ end
15
22
  end
16
23
 
17
24
  def self.notification(post, options = {})
18
25
  Notification.new(post, options)
19
26
  end
20
-
27
+
21
28
  def self.return(post, options = {})
22
29
  Return.new(post, options)
23
30
  end
@@ -1,3 +1,3 @@
1
1
  module ActiveMerchant
2
- VERSION = "1.29.1"
2
+ VERSION = "1.34.0"
3
3
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activemerchant
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.1
5
4
  prerelease:
5
+ version: 1.34.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Tobias Luetke
@@ -37,129 +37,184 @@ cert_chain:
37
37
  Z1BvU1BxN25rK3MyRlFVQko5VVpGSzFsZ016aG8vNGZaZ3pKd2J1K2NPOFNO
38
38
  dWFMUy9iagpoUGFTVHlWVTB5Q1Nudz09Ci0tLS0tRU5EIENFUlRJRklDQVRF
39
39
  LS0tLS0K
40
- date: 2012-12-05 00:00:00.000000000 Z
40
+ date: 2013-06-20 00:00:00.000000000 Z
41
41
  dependencies:
42
42
  - !ruby/object:Gem::Dependency
43
- name: activesupport
44
- requirement: &70335632813660 !ruby/object:Gem::Requirement
45
- none: false
43
+ version_requirements: !ruby/object:Gem::Requirement
46
44
  requirements:
47
45
  - - ! '>='
48
46
  - !ruby/object:Gem::Version
49
47
  version: 2.3.14
48
+ none: false
49
+ name: activesupport
50
50
  type: :runtime
51
51
  prerelease: false
52
- version_requirements: *70335632813660
53
- - !ruby/object:Gem::Dependency
54
- name: i18n
55
- requirement: &70335632813220 !ruby/object:Gem::Requirement
52
+ requirement: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ! '>='
55
+ - !ruby/object:Gem::Version
56
+ version: 2.3.14
56
57
  none: false
58
+ - !ruby/object:Gem::Dependency
59
+ version_requirements: !ruby/object:Gem::Requirement
57
60
  requirements:
58
61
  - - ! '>='
59
62
  - !ruby/object:Gem::Version
60
63
  version: '0'
64
+ none: false
65
+ name: i18n
61
66
  type: :runtime
62
67
  prerelease: false
63
- version_requirements: *70335632813220
64
- - !ruby/object:Gem::Dependency
65
- name: money
66
- requirement: &70335632812700 !ruby/object:Gem::Requirement
68
+ requirement: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ! '>='
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
67
73
  none: false
74
+ - !ruby/object:Gem::Dependency
75
+ version_requirements: !ruby/object:Gem::Requirement
68
76
  requirements:
69
77
  - - ! '>='
70
78
  - !ruby/object:Gem::Version
71
79
  version: '0'
80
+ none: false
81
+ name: money
72
82
  type: :runtime
73
83
  prerelease: false
74
- version_requirements: *70335632812700
75
- - !ruby/object:Gem::Dependency
76
- name: builder
77
- requirement: &70335632812180 !ruby/object:Gem::Requirement
84
+ requirement: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ! '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
78
89
  none: false
90
+ - !ruby/object:Gem::Dependency
91
+ version_requirements: !ruby/object:Gem::Requirement
79
92
  requirements:
80
93
  - - ! '>='
81
94
  - !ruby/object:Gem::Version
82
95
  version: 2.0.0
96
+ none: false
97
+ name: builder
83
98
  type: :runtime
84
99
  prerelease: false
85
- version_requirements: *70335632812180
86
- - !ruby/object:Gem::Dependency
87
- name: json
88
- requirement: &70335632811640 !ruby/object:Gem::Requirement
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ! '>='
103
+ - !ruby/object:Gem::Version
104
+ version: 2.0.0
89
105
  none: false
106
+ - !ruby/object:Gem::Dependency
107
+ version_requirements: !ruby/object:Gem::Requirement
90
108
  requirements:
91
109
  - - ! '>='
92
110
  - !ruby/object:Gem::Version
93
111
  version: 1.5.1
112
+ none: false
113
+ name: json
94
114
  type: :runtime
95
115
  prerelease: false
96
- version_requirements: *70335632811640
97
- - !ruby/object:Gem::Dependency
98
- name: active_utils
99
- requirement: &70335632811140 !ruby/object:Gem::Requirement
116
+ requirement: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ! '>='
119
+ - !ruby/object:Gem::Version
120
+ version: 1.5.1
100
121
  none: false
122
+ - !ruby/object:Gem::Dependency
123
+ version_requirements: !ruby/object:Gem::Requirement
101
124
  requirements:
102
125
  - - ! '>='
103
126
  - !ruby/object:Gem::Version
104
127
  version: 1.0.2
128
+ none: false
129
+ name: active_utils
105
130
  type: :runtime
106
131
  prerelease: false
107
- version_requirements: *70335632811140
108
- - !ruby/object:Gem::Dependency
109
- name: nokogiri
110
- requirement: &70335632810740 !ruby/object:Gem::Requirement
132
+ requirement: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - ! '>='
135
+ - !ruby/object:Gem::Version
136
+ version: 1.0.2
111
137
  none: false
138
+ - !ruby/object:Gem::Dependency
139
+ version_requirements: !ruby/object:Gem::Requirement
112
140
  requirements:
113
141
  - - ! '>='
114
142
  - !ruby/object:Gem::Version
115
143
  version: '0'
144
+ none: false
145
+ name: nokogiri
116
146
  type: :runtime
117
147
  prerelease: false
118
- version_requirements: *70335632810740
119
- - !ruby/object:Gem::Dependency
120
- name: rake
121
- requirement: &70335632810240 !ruby/object:Gem::Requirement
148
+ requirement: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ! '>='
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
122
153
  none: false
154
+ - !ruby/object:Gem::Dependency
155
+ version_requirements: !ruby/object:Gem::Requirement
123
156
  requirements:
124
157
  - - ! '>='
125
158
  - !ruby/object:Gem::Version
126
159
  version: '0'
160
+ none: false
161
+ name: rake
127
162
  type: :development
128
163
  prerelease: false
129
- version_requirements: *70335632810240
130
- - !ruby/object:Gem::Dependency
131
- name: mocha
132
- requirement: &70335632809700 !ruby/object:Gem::Requirement
164
+ requirement: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - ! '>='
167
+ - !ruby/object:Gem::Version
168
+ version: '0'
133
169
  none: false
170
+ - !ruby/object:Gem::Dependency
171
+ version_requirements: !ruby/object:Gem::Requirement
134
172
  requirements:
135
173
  - - ~>
136
174
  - !ruby/object:Gem::Version
137
- version: 0.11.3
175
+ version: 0.13.0
176
+ none: false
177
+ name: mocha
138
178
  type: :development
139
179
  prerelease: false
140
- version_requirements: *70335632809700
141
- - !ruby/object:Gem::Dependency
142
- name: rails
143
- requirement: &70335632809180 !ruby/object:Gem::Requirement
180
+ requirement: !ruby/object:Gem::Requirement
181
+ requirements:
182
+ - - ~>
183
+ - !ruby/object:Gem::Version
184
+ version: 0.13.0
144
185
  none: false
186
+ - !ruby/object:Gem::Dependency
187
+ version_requirements: !ruby/object:Gem::Requirement
145
188
  requirements:
146
189
  - - ! '>='
147
190
  - !ruby/object:Gem::Version
148
191
  version: 2.3.14
192
+ none: false
193
+ name: rails
149
194
  type: :development
150
195
  prerelease: false
151
- version_requirements: *70335632809180
152
- - !ruby/object:Gem::Dependency
153
- name: thor
154
- requirement: &70335632808760 !ruby/object:Gem::Requirement
196
+ requirement: !ruby/object:Gem::Requirement
197
+ requirements:
198
+ - - ! '>='
199
+ - !ruby/object:Gem::Version
200
+ version: 2.3.14
155
201
  none: false
202
+ - !ruby/object:Gem::Dependency
203
+ version_requirements: !ruby/object:Gem::Requirement
156
204
  requirements:
157
205
  - - ! '>='
158
206
  - !ruby/object:Gem::Version
159
207
  version: '0'
208
+ none: false
209
+ name: thor
160
210
  type: :development
161
211
  prerelease: false
162
- version_requirements: *70335632808760
212
+ requirement: !ruby/object:Gem::Requirement
213
+ requirements:
214
+ - - ! '>='
215
+ - !ruby/object:Gem::Version
216
+ version: '0'
217
+ none: false
163
218
  description: Active Merchant is a simple payment abstraction library used in and sponsored
164
219
  by Shopify. It is written by Tobias Luetke, Cody Fauser, and contributors. The aim
165
220
  of the project is to feel natural to Ruby users and to abstract as many parts as
@@ -200,19 +255,24 @@ files:
200
255
  - lib/active_merchant/billing/gateways/braintree_orange.rb
201
256
  - lib/active_merchant/billing/gateways/card_save.rb
202
257
  - lib/active_merchant/billing/gateways/card_stream.rb
258
+ - lib/active_merchant/billing/gateways/card_stream_modern.rb
259
+ - lib/active_merchant/billing/gateways/cc5.rb
203
260
  - lib/active_merchant/billing/gateways/certo_direct.rb
204
261
  - lib/active_merchant/billing/gateways/cyber_source.rb
205
262
  - lib/active_merchant/billing/gateways/data_cash.rb
206
263
  - lib/active_merchant/billing/gateways/efsnet.rb
207
264
  - lib/active_merchant/billing/gateways/elavon.rb
208
265
  - lib/active_merchant/billing/gateways/epay.rb
266
+ - lib/active_merchant/billing/gateways/evo_ca.rb
209
267
  - lib/active_merchant/billing/gateways/eway.rb
210
268
  - lib/active_merchant/billing/gateways/eway_managed.rb
211
269
  - lib/active_merchant/billing/gateways/eway_rapid.rb
212
270
  - lib/active_merchant/billing/gateways/exact.rb
213
271
  - lib/active_merchant/billing/gateways/fat_zebra.rb
214
272
  - lib/active_merchant/billing/gateways/federated_canada.rb
273
+ - lib/active_merchant/billing/gateways/finansbank.rb
215
274
  - lib/active_merchant/billing/gateways/first_pay.rb
275
+ - lib/active_merchant/billing/gateways/firstdata_e4.rb
216
276
  - lib/active_merchant/billing/gateways/garanti.rb
217
277
  - lib/active_merchant/billing/gateways/hdfc.rb
218
278
  - lib/active_merchant/billing/gateways/ideal/ideal_base.rb
@@ -228,6 +288,7 @@ files:
228
288
  - lib/active_merchant/billing/gateways/litle.rb
229
289
  - lib/active_merchant/billing/gateways/merchant_e_solutions.rb
230
290
  - lib/active_merchant/billing/gateways/merchant_ware.rb
291
+ - lib/active_merchant/billing/gateways/merchant_warrior.rb
231
292
  - lib/active_merchant/billing/gateways/mercury.rb
232
293
  - lib/active_merchant/billing/gateways/metrics_global.rb
233
294
  - lib/active_merchant/billing/gateways/migs/migs_codes.rb
@@ -240,6 +301,7 @@ files:
240
301
  - lib/active_merchant/billing/gateways/net_registry.rb
241
302
  - lib/active_merchant/billing/gateways/netaxept.rb
242
303
  - lib/active_merchant/billing/gateways/netbilling.rb
304
+ - lib/active_merchant/billing/gateways/netpay.rb
243
305
  - lib/active_merchant/billing/gateways/nmi.rb
244
306
  - lib/active_merchant/billing/gateways/ogone.rb
245
307
  - lib/active_merchant/billing/gateways/optimal_payment.rb
@@ -258,6 +320,7 @@ files:
258
320
  - lib/active_merchant/billing/gateways/payflow_express_uk.rb
259
321
  - lib/active_merchant/billing/gateways/payflow_uk.rb
260
322
  - lib/active_merchant/billing/gateways/payment_express.rb
323
+ - lib/active_merchant/billing/gateways/paymill.rb
261
324
  - lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb
262
325
  - lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb
263
326
  - lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb
@@ -268,6 +331,7 @@ files:
268
331
  - lib/active_merchant/billing/gateways/paypal_express_common.rb
269
332
  - lib/active_merchant/billing/gateways/paystation.rb
270
333
  - lib/active_merchant/billing/gateways/payway.rb
334
+ - lib/active_merchant/billing/gateways/pin.rb
271
335
  - lib/active_merchant/billing/gateways/plugnpay.rb
272
336
  - lib/active_merchant/billing/gateways/psigate.rb
273
337
  - lib/active_merchant/billing/gateways/psl_card.rb
@@ -289,9 +353,11 @@ files:
289
353
  - lib/active_merchant/billing/gateways/secure_pay_tech.rb
290
354
  - lib/active_merchant/billing/gateways/skip_jack.rb
291
355
  - lib/active_merchant/billing/gateways/smart_ps.rb
356
+ - lib/active_merchant/billing/gateways/spreedly_core.rb
292
357
  - lib/active_merchant/billing/gateways/stripe.rb
293
358
  - lib/active_merchant/billing/gateways/trans_first.rb
294
359
  - lib/active_merchant/billing/gateways/transax.rb
360
+ - lib/active_merchant/billing/gateways/transnational.rb
295
361
  - lib/active_merchant/billing/gateways/trust_commerce.rb
296
362
  - lib/active_merchant/billing/gateways/usa_epay.rb
297
363
  - lib/active_merchant/billing/gateways/usa_epay_advanced.rb
@@ -332,6 +398,7 @@ files:
332
398
  - lib/active_merchant/billing/integrations/dotpay/notification.rb
333
399
  - lib/active_merchant/billing/integrations/dotpay/return.rb
334
400
  - lib/active_merchant/billing/integrations/dotpay.rb
401
+ - lib/active_merchant/billing/integrations/dwolla/common.rb
335
402
  - lib/active_merchant/billing/integrations/dwolla/helper.rb
336
403
  - lib/active_merchant/billing/integrations/dwolla/notification.rb
337
404
  - lib/active_merchant/billing/integrations/dwolla/return.rb
@@ -395,6 +462,10 @@ files:
395
462
  - lib/active_merchant/billing/integrations/paysbuy/helper.rb
396
463
  - lib/active_merchant/billing/integrations/paysbuy/notification.rb
397
464
  - lib/active_merchant/billing/integrations/paysbuy.rb
465
+ - lib/active_merchant/billing/integrations/payu_in/helper.rb
466
+ - lib/active_merchant/billing/integrations/payu_in/notification.rb
467
+ - lib/active_merchant/billing/integrations/payu_in/return.rb
468
+ - lib/active_merchant/billing/integrations/payu_in.rb
398
469
  - lib/active_merchant/billing/integrations/pxpay/helper.rb
399
470
  - lib/active_merchant/billing/integrations/pxpay/notification.rb
400
471
  - lib/active_merchant/billing/integrations/pxpay/return.rb
@@ -402,6 +473,9 @@ files:
402
473
  - lib/active_merchant/billing/integrations/quickpay/helper.rb
403
474
  - lib/active_merchant/billing/integrations/quickpay/notification.rb
404
475
  - lib/active_merchant/billing/integrations/quickpay.rb
476
+ - lib/active_merchant/billing/integrations/rbkmoney/helper.rb
477
+ - lib/active_merchant/billing/integrations/rbkmoney/notification.rb
478
+ - lib/active_merchant/billing/integrations/rbkmoney.rb
405
479
  - lib/active_merchant/billing/integrations/return.rb
406
480
  - lib/active_merchant/billing/integrations/robokassa/common.rb
407
481
  - lib/active_merchant/billing/integrations/robokassa/helper.rb
@@ -452,20 +526,20 @@ rdoc_options: []
452
526
  require_paths:
453
527
  - lib
454
528
  required_ruby_version: !ruby/object:Gem::Requirement
455
- none: false
456
529
  requirements:
457
530
  - - ! '>='
458
531
  - !ruby/object:Gem::Version
459
532
  version: '0'
460
- required_rubygems_version: !ruby/object:Gem::Requirement
461
533
  none: false
534
+ required_rubygems_version: !ruby/object:Gem::Requirement
462
535
  requirements:
463
536
  - - ! '>='
464
537
  - !ruby/object:Gem::Version
465
538
  version: '0'
539
+ none: false
466
540
  requirements: []
467
541
  rubyforge_project: activemerchant
468
- rubygems_version: 1.8.11
542
+ rubygems_version: 1.8.23
469
543
  signing_key:
470
544
  specification_version: 3
471
545
  summary: Framework and tools for dealing with credit card transactions.
metadata.gz.sig CHANGED
Binary file