smulube-activemerchant 1.5.1.1 → 1.5.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (187) hide show
  1. data/.gitignore +6 -0
  2. data/Rakefile +85 -0
  3. data/generators/gateway/USAGE +5 -0
  4. data/generators/gateway/gateway_generator.rb +61 -0
  5. data/generators/gateway/templates/gateway.rb +77 -0
  6. data/generators/gateway/templates/gateway_test.rb +49 -0
  7. data/generators/gateway/templates/remote_gateway_test.rb +57 -0
  8. data/generators/integration/USAGE +5 -0
  9. data/generators/integration/integration_generator.rb +68 -0
  10. data/generators/integration/templates/helper.rb +34 -0
  11. data/generators/integration/templates/helper_test.rb +54 -0
  12. data/generators/integration/templates/integration.rb +18 -0
  13. data/generators/integration/templates/module_test.rb +9 -0
  14. data/generators/integration/templates/notification.rb +100 -0
  15. data/generators/integration/templates/notification_test.rb +41 -0
  16. data/init.rb +3 -0
  17. data/lib/active_merchant/billing/gateways/payflow_nvp_uk.rb +18 -11
  18. data/lib/active_merchant/version.rb +3 -0
  19. data/lib/active_merchant.rb +1 -0
  20. data/script/destroy +14 -0
  21. data/script/generate +14 -0
  22. data/test/fixtures.yml +355 -0
  23. data/test/remote/gateways/remote_authorize_net_cim_test.rb +460 -0
  24. data/test/remote/gateways/remote_authorize_net_test.rb +145 -0
  25. data/test/remote/gateways/remote_beanstream_interac_test.rb +53 -0
  26. data/test/remote/gateways/remote_beanstream_test.rb +150 -0
  27. data/test/remote/gateways/remote_braintree_test.rb +147 -0
  28. data/test/remote/gateways/remote_card_stream_test.rb +148 -0
  29. data/test/remote/gateways/remote_cyber_source_test.rb +144 -0
  30. data/test/remote/gateways/remote_data_cash_test.rb +356 -0
  31. data/test/remote/gateways/remote_efsnet_test.rb +81 -0
  32. data/test/remote/gateways/remote_elavon_test.rb +66 -0
  33. data/test/remote/gateways/remote_eway_test.rb +74 -0
  34. data/test/remote/gateways/remote_exact_test.rb +60 -0
  35. data/test/remote/gateways/remote_first_pay_test.rb +87 -0
  36. data/test/remote/gateways/remote_instapay_test.rb +61 -0
  37. data/test/remote/gateways/remote_jetpay_test.rb +103 -0
  38. data/test/remote/gateways/remote_linkpoint_test.rb +121 -0
  39. data/test/remote/gateways/remote_merchant_e_solutions_test.rb +173 -0
  40. data/test/remote/gateways/remote_merchant_ware_test.rb +113 -0
  41. data/test/remote/gateways/remote_modern_payments_cim_test.rb +58 -0
  42. data/test/remote/gateways/remote_modern_payments_test.rb +57 -0
  43. data/test/remote/gateways/remote_moneris_test.rb +82 -0
  44. data/test/remote/gateways/remote_net_registry_test.rb +85 -0
  45. data/test/remote/gateways/remote_netbilling_test.rb +70 -0
  46. data/test/remote/gateways/remote_ogone_test.rb +115 -0
  47. data/test/remote/gateways/remote_pay_junction_test.rb +143 -0
  48. data/test/remote/gateways/remote_pay_secure_test.rb +39 -0
  49. data/test/remote/gateways/remote_payflow_express_test.rb +50 -0
  50. data/test/remote/gateways/remote_payflow_nvp_uk_test.rb +57 -0
  51. data/test/remote/gateways/remote_payflow_test.rb +237 -0
  52. data/test/remote/gateways/remote_payflow_uk_test.rb +173 -0
  53. data/test/remote/gateways/remote_payment_express_test.rb +136 -0
  54. data/test/remote/gateways/remote_paypal_express_test.rb +49 -0
  55. data/test/remote/gateways/remote_paypal_test.rb +191 -0
  56. data/test/remote/gateways/remote_plugnpay_test.rb +72 -0
  57. data/test/remote/gateways/remote_psigate_test.rb +50 -0
  58. data/test/remote/gateways/remote_psl_card_test.rb +123 -0
  59. data/test/remote/gateways/remote_quickpay_test.rb +190 -0
  60. data/test/remote/gateways/remote_realex_test.rb +224 -0
  61. data/test/remote/gateways/remote_sage_bankcard_test.rb +109 -0
  62. data/test/remote/gateways/remote_sage_pay_test.rb +219 -0
  63. data/test/remote/gateways/remote_sage_test.rb +87 -0
  64. data/test/remote/gateways/remote_sage_virtual_check_test.rb +62 -0
  65. data/test/remote/gateways/remote_sallie_mae_test.rb +51 -0
  66. data/test/remote/gateways/remote_secure_pay_au_test.rb +40 -0
  67. data/test/remote/gateways/remote_secure_pay_tech_test.rb +37 -0
  68. data/test/remote/gateways/remote_secure_pay_test.rb +28 -0
  69. data/test/remote/gateways/remote_skipjack_test.rb +105 -0
  70. data/test/remote/gateways/remote_trans_first_test.rb +34 -0
  71. data/test/remote/gateways/remote_transax_test.rb +112 -0
  72. data/test/remote/gateways/remote_trust_commerce_test.rb +152 -0
  73. data/test/remote/gateways/remote_usa_epay_test.rb +46 -0
  74. data/test/remote/gateways/remote_verifi_test.rb +107 -0
  75. data/test/remote/gateways/remote_viaklix_test.rb +43 -0
  76. data/test/remote/gateways/remote_wirecard_test.rb +111 -0
  77. data/test/remote/integrations/remote_gestpay_integration_test.rb +37 -0
  78. data/test/remote/integrations/remote_paypal_integration_test.rb +26 -0
  79. data/test/test_helper.rb +184 -0
  80. data/test/unit/avs_result_test.rb +59 -0
  81. data/test/unit/base_test.rb +54 -0
  82. data/test/unit/check_test.rb +88 -0
  83. data/test/unit/connection_test.rb +129 -0
  84. data/test/unit/country_code_test.rb +33 -0
  85. data/test/unit/country_test.rb +64 -0
  86. data/test/unit/credit_card_formatting_test.rb +19 -0
  87. data/test/unit/credit_card_methods_test.rb +179 -0
  88. data/test/unit/credit_card_test.rb +318 -0
  89. data/test/unit/cvv_result_test.rb +33 -0
  90. data/test/unit/expiry_date_test.rb +32 -0
  91. data/test/unit/gateways/authorize_net_cim_test.rb +676 -0
  92. data/test/unit/gateways/authorize_net_test.rb +290 -0
  93. data/test/unit/gateways/beanstream_interac_test.rb +51 -0
  94. data/test/unit/gateways/beanstream_test.rb +144 -0
  95. data/test/unit/gateways/bogus_test.rb +58 -0
  96. data/test/unit/gateways/braintree_test.rb +118 -0
  97. data/test/unit/gateways/card_stream_test.rb +90 -0
  98. data/test/unit/gateways/cyber_source_test.rb +188 -0
  99. data/test/unit/gateways/data_cash_test.rb +133 -0
  100. data/test/unit/gateways/efsnet_test.rb +123 -0
  101. data/test/unit/gateways/elavon_test.rb +139 -0
  102. data/test/unit/gateways/eway_test.rb +118 -0
  103. data/test/unit/gateways/exact_test.rb +156 -0
  104. data/test/unit/gateways/first_pay_test.rb +125 -0
  105. data/test/unit/gateways/gateway_test.rb +48 -0
  106. data/test/unit/gateways/instapay_test.rb +102 -0
  107. data/test/unit/gateways/jetpay_test.rb +185 -0
  108. data/test/unit/gateways/linkpoint_test.rb +197 -0
  109. data/test/unit/gateways/merchant_e_solutions_test.rb +169 -0
  110. data/test/unit/gateways/merchant_ware_test.rb +188 -0
  111. data/test/unit/gateways/modern_payments_cim_test.rb +162 -0
  112. data/test/unit/gateways/moneris_test.rb +158 -0
  113. data/test/unit/gateways/net_registry_test.rb +416 -0
  114. data/test/unit/gateways/netbilling_test.rb +54 -0
  115. data/test/unit/gateways/ogone_test.rb +319 -0
  116. data/test/unit/gateways/pay_junction_test.rb +123 -0
  117. data/test/unit/gateways/pay_secure_test.rb +71 -0
  118. data/test/unit/gateways/payflow_express_test.rb +173 -0
  119. data/test/unit/gateways/payflow_express_uk_test.rb +86 -0
  120. data/test/unit/gateways/payflow_nvp_uk_test.rb +201 -0
  121. data/test/unit/gateways/payflow_test.rb +305 -0
  122. data/test/unit/gateways/payflow_uk_test.rb +30 -0
  123. data/test/unit/gateways/payment_express_test.rb +195 -0
  124. data/test/unit/gateways/paypal_express_test.rb +382 -0
  125. data/test/unit/gateways/paypal_test.rb +569 -0
  126. data/test/unit/gateways/plugnpay_test.rb +86 -0
  127. data/test/unit/gateways/psigate_test.rb +169 -0
  128. data/test/unit/gateways/psl_card_test.rb +64 -0
  129. data/test/unit/gateways/quickpay_test.rb +112 -0
  130. data/test/unit/gateways/realex_test.rb +151 -0
  131. data/test/unit/gateways/sage_bankcard_test.rb +196 -0
  132. data/test/unit/gateways/sage_pay_test.rb +139 -0
  133. data/test/unit/gateways/sage_virtual_check_test.rb +71 -0
  134. data/test/unit/gateways/sallie_mae_test.rb +53 -0
  135. data/test/unit/gateways/secure_pay_au_test.rb +207 -0
  136. data/test/unit/gateways/secure_pay_tech_test.rb +44 -0
  137. data/test/unit/gateways/secure_pay_test.rb +101 -0
  138. data/test/unit/gateways/skip_jack_test.rb +228 -0
  139. data/test/unit/gateways/trans_first_test.rb +112 -0
  140. data/test/unit/gateways/trust_commerce_test.rb +90 -0
  141. data/test/unit/gateways/usa_epay_test.rb +128 -0
  142. data/test/unit/gateways/verifi_test.rb +96 -0
  143. data/test/unit/gateways/viaklix_test.rb +78 -0
  144. data/test/unit/gateways/wirecard_test.rb +250 -0
  145. data/test/unit/generators/test_gateway_generator.rb +46 -0
  146. data/test/unit/generators/test_generator_helper.rb +20 -0
  147. data/test/unit/generators/test_integration_generator.rb +53 -0
  148. data/test/unit/integrations/action_view_helper_test.rb +50 -0
  149. data/test/unit/integrations/bogus_module_test.rb +20 -0
  150. data/test/unit/integrations/chronopay_module_test.rb +13 -0
  151. data/test/unit/integrations/gestpay_module_test.rb +14 -0
  152. data/test/unit/integrations/helpers/bogus_helper_test.rb +28 -0
  153. data/test/unit/integrations/helpers/chronopay_helper_test.rb +110 -0
  154. data/test/unit/integrations/helpers/gestpay_helper_test.rb +100 -0
  155. data/test/unit/integrations/helpers/hi_trust_helper_test.rb +16 -0
  156. data/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
  157. data/test/unit/integrations/helpers/paypal_helper_test.rb +171 -0
  158. data/test/unit/integrations/helpers/quickpay_helper_test.rb +40 -0
  159. data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
  160. data/test/unit/integrations/hi_trust_module_test.rb +13 -0
  161. data/test/unit/integrations/nochex_module_test.rb +13 -0
  162. data/test/unit/integrations/notifications/chronopay_notification_test.rb +66 -0
  163. data/test/unit/integrations/notifications/gestpay_notification_test.rb +60 -0
  164. data/test/unit/integrations/notifications/hi_trust_notification_test.rb +59 -0
  165. data/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
  166. data/test/unit/integrations/notifications/notification_test.rb +54 -0
  167. data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
  168. data/test/unit/integrations/notifications/quickpay_notification_test.rb +69 -0
  169. data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
  170. data/test/unit/integrations/paypal_module_test.rb +28 -0
  171. data/test/unit/integrations/quickpay_module_test.rb +9 -0
  172. data/test/unit/integrations/returns/chronopay_return_test.rb +11 -0
  173. data/test/unit/integrations/returns/gestpay_return_test.rb +10 -0
  174. data/test/unit/integrations/returns/hi_trust_return_test.rb +24 -0
  175. data/test/unit/integrations/returns/nochex_return_test.rb +10 -0
  176. data/test/unit/integrations/returns/paypal_return_test.rb +10 -0
  177. data/test/unit/integrations/returns/return_test.rb +11 -0
  178. data/test/unit/integrations/returns/two_checkout_return_test.rb +24 -0
  179. data/test/unit/integrations/two_checkout_module_test.rb +13 -0
  180. data/test/unit/post_data_test.rb +55 -0
  181. data/test/unit/posts_data_test.rb +48 -0
  182. data/test/unit/response_test.rb +28 -0
  183. data/test/unit/utils_test.rb +7 -0
  184. data/test/unit/validateable_test.rb +60 -0
  185. data.tar.gz.sig +0 -0
  186. metadata +453 -107
  187. metadata.gz.sig +0 -0
metadata CHANGED
@@ -6,11 +6,14 @@ version: !ruby/object:Gem::Version
6
6
  - 1
7
7
  - 5
8
8
  - 1
9
- - 1
10
- version: 1.5.1.1
9
+ - 2
10
+ version: 1.5.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Tobias Luetke
14
+ - Cody Fauser
15
+ - Dennis Thiesen
16
+ - Sam Mulube
14
17
  autorequire:
15
18
  bindir: bin
16
19
  cert_chain:
@@ -36,7 +39,7 @@ cert_chain:
36
39
  hPaSTyVU0yCSnw==
37
40
  -----END CERTIFICATE-----
38
41
 
39
- date: 2010-04-06 00:00:00 +01:00
42
+ date: 2010-04-09 00:00:00 +01:00
40
43
  default_executable:
41
44
  dependencies:
42
45
  - !ruby/object:Gem::Dependency
@@ -73,147 +76,329 @@ executables: []
73
76
 
74
77
  extensions: []
75
78
 
76
- extra_rdoc_files: []
77
-
79
+ extra_rdoc_files:
80
+ - README.rdoc
78
81
  files:
82
+ - .gitignore
79
83
  - CHANGELOG
80
- - README.rdoc
81
- - MIT-LICENSE
82
84
  - CONTRIBUTORS
85
+ - MIT-LICENSE
86
+ - README.rdoc
87
+ - Rakefile
83
88
  - gem-public_cert.pem
84
- - lib/support/gateway_support.rb
85
- - lib/certs/cacert.pem
89
+ - generators/gateway/USAGE
90
+ - generators/gateway/gateway_generator.rb
91
+ - generators/gateway/templates/gateway.rb
92
+ - generators/gateway/templates/gateway_test.rb
93
+ - generators/gateway/templates/remote_gateway_test.rb
94
+ - generators/integration/USAGE
95
+ - generators/integration/integration_generator.rb
96
+ - generators/integration/templates/helper.rb
97
+ - generators/integration/templates/helper_test.rb
98
+ - generators/integration/templates/integration.rb
99
+ - generators/integration/templates/module_test.rb
100
+ - generators/integration/templates/notification.rb
101
+ - generators/integration/templates/notification_test.rb
102
+ - init.rb
103
+ - lib/active_merchant.rb
86
104
  - lib/active_merchant/billing.rb
105
+ - lib/active_merchant/billing/avs_result.rb
87
106
  - lib/active_merchant/billing/base.rb
88
107
  - lib/active_merchant/billing/check.rb
89
- - lib/active_merchant/billing/gateways/net_registry.rb
90
- - lib/active_merchant/billing/gateways/sage_pay.rb
91
- - lib/active_merchant/billing/gateways/moneris.rb
92
- - lib/active_merchant/billing/gateways/linkpoint.rb
93
- - lib/active_merchant/billing/gateways/eway.rb
94
- - lib/active_merchant/billing/gateways/sage/sage_core.rb
95
- - lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb
96
- - lib/active_merchant/billing/gateways/sage/sage_bankcard.rb
97
- - lib/active_merchant/billing/gateways/modern_payments_cim.rb
108
+ - lib/active_merchant/billing/credit_card.rb
109
+ - lib/active_merchant/billing/credit_card_formatting.rb
110
+ - lib/active_merchant/billing/credit_card_methods.rb
111
+ - lib/active_merchant/billing/cvv_result.rb
112
+ - lib/active_merchant/billing/expiry_date.rb
113
+ - lib/active_merchant/billing/gateway.rb
114
+ - lib/active_merchant/billing/gateways.rb
115
+ - lib/active_merchant/billing/gateways/authorize_net.rb
98
116
  - lib/active_merchant/billing/gateways/authorize_net_cim.rb
99
- - lib/active_merchant/billing/gateways/merchant_e_solutions.rb
100
- - lib/active_merchant/billing/gateways/payflow/payflow_response.rb
101
- - lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb
102
- - lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb
117
+ - lib/active_merchant/billing/gateways/beanstream.rb
118
+ - lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb
103
119
  - lib/active_merchant/billing/gateways/beanstream_interac.rb
104
- - lib/active_merchant/billing/gateways/merchant_ware.rb
105
- - lib/active_merchant/billing/gateways/payflow_express.rb
106
- - lib/active_merchant/billing/gateways/verifi.rb
107
- - lib/active_merchant/billing/gateways/trust_commerce.rb
108
120
  - lib/active_merchant/billing/gateways/bogus.rb
109
- - lib/active_merchant/billing/gateways/skip_jack.rb
110
- - lib/active_merchant/billing/gateways/authorize_net.rb
111
- - lib/active_merchant/billing/gateways/efsnet.rb
112
- - lib/active_merchant/billing/gateways/ogone.rb
113
- - lib/active_merchant/billing/gateways/modern_payments.rb
114
- - lib/active_merchant/billing/gateways/jetpay.rb
115
- - lib/active_merchant/billing/gateways/transax.rb
116
- - lib/active_merchant/billing/gateways/payflow_uk.rb
117
- - lib/active_merchant/billing/gateways/paypal_express_common.rb
118
- - lib/active_merchant/billing/gateways/netbilling.rb
119
- - lib/active_merchant/billing/gateways/usa_epay.rb
120
- - lib/active_merchant/billing/gateways/plugnpay.rb
121
- - lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb
122
- - lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb
123
- - lib/active_merchant/billing/gateways/sage.rb
124
- - lib/active_merchant/billing/gateways/trans_first.rb
125
- - lib/active_merchant/billing/gateways/payflow_nvp_uk.rb
126
- - lib/active_merchant/billing/gateways/secure_pay_tech.rb
127
- - lib/active_merchant/billing/gateways/psigate.rb
128
121
  - lib/active_merchant/billing/gateways/braintree.rb
129
- - lib/active_merchant/billing/gateways/realex.rb
130
- - lib/active_merchant/billing/gateways/viaklix.rb
131
- - lib/active_merchant/billing/gateways/payflow.rb
132
122
  - lib/active_merchant/billing/gateways/card_stream.rb
123
+ - lib/active_merchant/billing/gateways/cyber_source.rb
133
124
  - lib/active_merchant/billing/gateways/data_cash.rb
134
- - lib/active_merchant/billing/gateways/payflow_express_uk.rb
135
- - lib/active_merchant/billing/gateways/secure_pay_au.rb
136
- - lib/active_merchant/billing/gateways/pay_junction.rb
125
+ - lib/active_merchant/billing/gateways/efsnet.rb
137
126
  - lib/active_merchant/billing/gateways/elavon.rb
138
- - lib/active_merchant/billing/gateways/beanstream.rb
127
+ - lib/active_merchant/billing/gateways/eway.rb
139
128
  - lib/active_merchant/billing/gateways/exact.rb
140
129
  - lib/active_merchant/billing/gateways/first_pay.rb
141
- - lib/active_merchant/billing/gateways/sallie_mae.rb
142
- - lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb
143
- - lib/active_merchant/billing/gateways/paypal_express.rb
130
+ - lib/active_merchant/billing/gateways/instapay.rb
131
+ - lib/active_merchant/billing/gateways/jetpay.rb
132
+ - lib/active_merchant/billing/gateways/linkpoint.rb
133
+ - lib/active_merchant/billing/gateways/merchant_e_solutions.rb
134
+ - lib/active_merchant/billing/gateways/merchant_ware.rb
135
+ - lib/active_merchant/billing/gateways/modern_payments.rb
136
+ - lib/active_merchant/billing/gateways/modern_payments_cim.rb
137
+ - lib/active_merchant/billing/gateways/moneris.rb
138
+ - lib/active_merchant/billing/gateways/net_registry.rb
139
+ - lib/active_merchant/billing/gateways/netbilling.rb
140
+ - lib/active_merchant/billing/gateways/ogone.rb
141
+ - lib/active_merchant/billing/gateways/pay_junction.rb
144
142
  - lib/active_merchant/billing/gateways/pay_secure.rb
143
+ - lib/active_merchant/billing/gateways/payflow.rb
144
+ - lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb
145
+ - lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb
146
+ - lib/active_merchant/billing/gateways/payflow/payflow_response.rb
147
+ - lib/active_merchant/billing/gateways/payflow_express.rb
148
+ - lib/active_merchant/billing/gateways/payflow_express_uk.rb
149
+ - lib/active_merchant/billing/gateways/payflow_nvp_uk.rb
150
+ - lib/active_merchant/billing/gateways/payflow_uk.rb
151
+ - lib/active_merchant/billing/gateways/payment_express.rb
145
152
  - lib/active_merchant/billing/gateways/paypal.rb
153
+ - lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb
154
+ - lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb
146
155
  - lib/active_merchant/billing/gateways/paypal_ca.rb
147
- - lib/active_merchant/billing/gateways/cyber_source.rb
148
- - lib/active_merchant/billing/gateways/secure_pay.rb
156
+ - lib/active_merchant/billing/gateways/paypal_express.rb
157
+ - lib/active_merchant/billing/gateways/paypal_express_common.rb
158
+ - lib/active_merchant/billing/gateways/plugnpay.rb
159
+ - lib/active_merchant/billing/gateways/psigate.rb
149
160
  - lib/active_merchant/billing/gateways/psl_card.rb
161
+ - lib/active_merchant/billing/gateways/quickpay.rb
162
+ - lib/active_merchant/billing/gateways/realex.rb
163
+ - lib/active_merchant/billing/gateways/sage.rb
164
+ - lib/active_merchant/billing/gateways/sage/sage_bankcard.rb
165
+ - lib/active_merchant/billing/gateways/sage/sage_core.rb
166
+ - lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb
167
+ - lib/active_merchant/billing/gateways/sage_pay.rb
168
+ - lib/active_merchant/billing/gateways/sallie_mae.rb
169
+ - lib/active_merchant/billing/gateways/secure_pay.rb
170
+ - lib/active_merchant/billing/gateways/secure_pay_au.rb
171
+ - lib/active_merchant/billing/gateways/secure_pay_tech.rb
172
+ - lib/active_merchant/billing/gateways/skip_jack.rb
150
173
  - lib/active_merchant/billing/gateways/smart_ps.rb
151
- - lib/active_merchant/billing/gateways/payment_express.rb
152
- - lib/active_merchant/billing/gateways/instapay.rb
174
+ - lib/active_merchant/billing/gateways/trans_first.rb
175
+ - lib/active_merchant/billing/gateways/transax.rb
176
+ - lib/active_merchant/billing/gateways/trust_commerce.rb
177
+ - lib/active_merchant/billing/gateways/usa_epay.rb
178
+ - lib/active_merchant/billing/gateways/verifi.rb
179
+ - lib/active_merchant/billing/gateways/viaklix.rb
153
180
  - lib/active_merchant/billing/gateways/wirecard.rb
154
- - lib/active_merchant/billing/gateways/quickpay.rb
155
- - lib/active_merchant/billing/credit_card_formatting.rb
156
181
  - lib/active_merchant/billing/integrations.rb
157
- - lib/active_merchant/billing/gateway.rb
158
- - lib/active_merchant/billing/credit_card.rb
159
- - lib/active_merchant/billing/avs_result.rb
160
- - lib/active_merchant/billing/response.rb
161
- - lib/active_merchant/billing/gateways.rb
162
- - lib/active_merchant/billing/expiry_date.rb
163
- - lib/active_merchant/billing/cvv_result.rb
164
- - lib/active_merchant/billing/credit_card_methods.rb
165
- - lib/active_merchant/billing/integrations/quickpay/helper.rb
166
- - lib/active_merchant/billing/integrations/quickpay/notification.rb
167
- - lib/active_merchant/billing/integrations/return.rb
168
- - lib/active_merchant/billing/integrations/helper.rb
182
+ - lib/active_merchant/billing/integrations/action_view_helper.rb
169
183
  - lib/active_merchant/billing/integrations/bogus.rb
170
- - lib/active_merchant/billing/integrations/two_checkout/return.rb
171
- - lib/active_merchant/billing/integrations/two_checkout/helper.rb
172
- - lib/active_merchant/billing/integrations/two_checkout/notification.rb
184
+ - lib/active_merchant/billing/integrations/bogus/helper.rb
185
+ - lib/active_merchant/billing/integrations/bogus/notification.rb
186
+ - lib/active_merchant/billing/integrations/bogus/return.rb
187
+ - lib/active_merchant/billing/integrations/chronopay.rb
188
+ - lib/active_merchant/billing/integrations/chronopay/helper.rb
189
+ - lib/active_merchant/billing/integrations/chronopay/notification.rb
190
+ - lib/active_merchant/billing/integrations/chronopay/return.rb
173
191
  - lib/active_merchant/billing/integrations/gestpay.rb
174
- - lib/active_merchant/billing/integrations/paypal/return.rb
175
- - lib/active_merchant/billing/integrations/paypal/helper.rb
176
- - lib/active_merchant/billing/integrations/paypal/notification.rb
177
- - lib/active_merchant/billing/integrations/gestpay/return.rb
178
- - lib/active_merchant/billing/integrations/gestpay/helper.rb
179
192
  - lib/active_merchant/billing/integrations/gestpay/common.rb
193
+ - lib/active_merchant/billing/integrations/gestpay/helper.rb
180
194
  - lib/active_merchant/billing/integrations/gestpay/notification.rb
181
- - lib/active_merchant/billing/integrations/notification.rb
182
- - lib/active_merchant/billing/integrations/chronopay/return.rb
183
- - lib/active_merchant/billing/integrations/chronopay/helper.rb
184
- - lib/active_merchant/billing/integrations/chronopay/notification.rb
185
- - lib/active_merchant/billing/integrations/chronopay.rb
186
- - lib/active_merchant/billing/integrations/two_checkout.rb
187
- - lib/active_merchant/billing/integrations/nochex/return.rb
188
- - lib/active_merchant/billing/integrations/nochex/helper.rb
189
- - lib/active_merchant/billing/integrations/nochex/notification.rb
190
- - lib/active_merchant/billing/integrations/nochex.rb
195
+ - lib/active_merchant/billing/integrations/gestpay/return.rb
196
+ - lib/active_merchant/billing/integrations/helper.rb
191
197
  - lib/active_merchant/billing/integrations/hi_trust.rb
192
- - lib/active_merchant/billing/integrations/paypal.rb
193
- - lib/active_merchant/billing/integrations/hi_trust/return.rb
194
198
  - lib/active_merchant/billing/integrations/hi_trust/helper.rb
195
199
  - lib/active_merchant/billing/integrations/hi_trust/notification.rb
196
- - lib/active_merchant/billing/integrations/bogus/return.rb
197
- - lib/active_merchant/billing/integrations/bogus/helper.rb
198
- - lib/active_merchant/billing/integrations/bogus/notification.rb
199
- - lib/active_merchant/billing/integrations/action_view_helper.rb
200
+ - lib/active_merchant/billing/integrations/hi_trust/return.rb
201
+ - lib/active_merchant/billing/integrations/nochex.rb
202
+ - lib/active_merchant/billing/integrations/nochex/helper.rb
203
+ - lib/active_merchant/billing/integrations/nochex/notification.rb
204
+ - lib/active_merchant/billing/integrations/nochex/return.rb
205
+ - lib/active_merchant/billing/integrations/notification.rb
206
+ - lib/active_merchant/billing/integrations/paypal.rb
207
+ - lib/active_merchant/billing/integrations/paypal/helper.rb
208
+ - lib/active_merchant/billing/integrations/paypal/notification.rb
209
+ - lib/active_merchant/billing/integrations/paypal/return.rb
200
210
  - lib/active_merchant/billing/integrations/quickpay.rb
201
- - lib/active_merchant/lib/requires_parameters.rb
202
- - lib/active_merchant/lib/posts_data.rb
203
- - lib/active_merchant/lib/utils.rb
211
+ - lib/active_merchant/billing/integrations/quickpay/helper.rb
212
+ - lib/active_merchant/billing/integrations/quickpay/notification.rb
213
+ - lib/active_merchant/billing/integrations/return.rb
214
+ - lib/active_merchant/billing/integrations/two_checkout.rb
215
+ - lib/active_merchant/billing/integrations/two_checkout/helper.rb
216
+ - lib/active_merchant/billing/integrations/two_checkout/notification.rb
217
+ - lib/active_merchant/billing/integrations/two_checkout/return.rb
218
+ - lib/active_merchant/billing/response.rb
204
219
  - lib/active_merchant/lib/connection.rb
220
+ - lib/active_merchant/lib/country.rb
205
221
  - lib/active_merchant/lib/error.rb
206
222
  - lib/active_merchant/lib/post_data.rb
223
+ - lib/active_merchant/lib/posts_data.rb
224
+ - lib/active_merchant/lib/requires_parameters.rb
225
+ - lib/active_merchant/lib/utils.rb
207
226
  - lib/active_merchant/lib/validateable.rb
208
- - lib/active_merchant/lib/country.rb
209
- - lib/active_merchant.rb
227
+ - lib/active_merchant/version.rb
228
+ - lib/certs/cacert.pem
229
+ - lib/support/gateway_support.rb
230
+ - script/destroy
231
+ - script/generate
232
+ - test/fixtures.yml
233
+ - test/remote/gateways/remote_authorize_net_cim_test.rb
234
+ - test/remote/gateways/remote_authorize_net_test.rb
235
+ - test/remote/gateways/remote_beanstream_interac_test.rb
236
+ - test/remote/gateways/remote_beanstream_test.rb
237
+ - test/remote/gateways/remote_braintree_test.rb
238
+ - test/remote/gateways/remote_card_stream_test.rb
239
+ - test/remote/gateways/remote_cyber_source_test.rb
240
+ - test/remote/gateways/remote_data_cash_test.rb
241
+ - test/remote/gateways/remote_efsnet_test.rb
242
+ - test/remote/gateways/remote_elavon_test.rb
243
+ - test/remote/gateways/remote_eway_test.rb
244
+ - test/remote/gateways/remote_exact_test.rb
245
+ - test/remote/gateways/remote_first_pay_test.rb
246
+ - test/remote/gateways/remote_instapay_test.rb
247
+ - test/remote/gateways/remote_jetpay_test.rb
248
+ - test/remote/gateways/remote_linkpoint_test.rb
249
+ - test/remote/gateways/remote_merchant_e_solutions_test.rb
250
+ - test/remote/gateways/remote_merchant_ware_test.rb
251
+ - test/remote/gateways/remote_modern_payments_cim_test.rb
252
+ - test/remote/gateways/remote_modern_payments_test.rb
253
+ - test/remote/gateways/remote_moneris_test.rb
254
+ - test/remote/gateways/remote_net_registry_test.rb
255
+ - test/remote/gateways/remote_netbilling_test.rb
256
+ - test/remote/gateways/remote_ogone_test.rb
257
+ - test/remote/gateways/remote_pay_junction_test.rb
258
+ - test/remote/gateways/remote_pay_secure_test.rb
259
+ - test/remote/gateways/remote_payflow_express_test.rb
260
+ - test/remote/gateways/remote_payflow_nvp_uk_test.rb
261
+ - test/remote/gateways/remote_payflow_test.rb
262
+ - test/remote/gateways/remote_payflow_uk_test.rb
263
+ - test/remote/gateways/remote_payment_express_test.rb
264
+ - test/remote/gateways/remote_paypal_express_test.rb
265
+ - test/remote/gateways/remote_paypal_test.rb
266
+ - test/remote/gateways/remote_plugnpay_test.rb
267
+ - test/remote/gateways/remote_psigate_test.rb
268
+ - test/remote/gateways/remote_psl_card_test.rb
269
+ - test/remote/gateways/remote_quickpay_test.rb
270
+ - test/remote/gateways/remote_realex_test.rb
271
+ - test/remote/gateways/remote_sage_bankcard_test.rb
272
+ - test/remote/gateways/remote_sage_pay_test.rb
273
+ - test/remote/gateways/remote_sage_test.rb
274
+ - test/remote/gateways/remote_sage_virtual_check_test.rb
275
+ - test/remote/gateways/remote_sallie_mae_test.rb
276
+ - test/remote/gateways/remote_secure_pay_au_test.rb
277
+ - test/remote/gateways/remote_secure_pay_tech_test.rb
278
+ - test/remote/gateways/remote_secure_pay_test.rb
279
+ - test/remote/gateways/remote_skipjack_test.rb
280
+ - test/remote/gateways/remote_trans_first_test.rb
281
+ - test/remote/gateways/remote_transax_test.rb
282
+ - test/remote/gateways/remote_trust_commerce_test.rb
283
+ - test/remote/gateways/remote_usa_epay_test.rb
284
+ - test/remote/gateways/remote_verifi_test.rb
285
+ - test/remote/gateways/remote_viaklix_test.rb
286
+ - test/remote/gateways/remote_wirecard_test.rb
287
+ - test/remote/integrations/remote_gestpay_integration_test.rb
288
+ - test/remote/integrations/remote_paypal_integration_test.rb
289
+ - test/test_helper.rb
290
+ - test/unit/avs_result_test.rb
291
+ - test/unit/base_test.rb
292
+ - test/unit/check_test.rb
293
+ - test/unit/connection_test.rb
294
+ - test/unit/country_code_test.rb
295
+ - test/unit/country_test.rb
296
+ - test/unit/credit_card_formatting_test.rb
297
+ - test/unit/credit_card_methods_test.rb
298
+ - test/unit/credit_card_test.rb
299
+ - test/unit/cvv_result_test.rb
300
+ - test/unit/expiry_date_test.rb
301
+ - test/unit/gateways/authorize_net_cim_test.rb
302
+ - test/unit/gateways/authorize_net_test.rb
303
+ - test/unit/gateways/beanstream_interac_test.rb
304
+ - test/unit/gateways/beanstream_test.rb
305
+ - test/unit/gateways/bogus_test.rb
306
+ - test/unit/gateways/braintree_test.rb
307
+ - test/unit/gateways/card_stream_test.rb
308
+ - test/unit/gateways/cyber_source_test.rb
309
+ - test/unit/gateways/data_cash_test.rb
310
+ - test/unit/gateways/efsnet_test.rb
311
+ - test/unit/gateways/elavon_test.rb
312
+ - test/unit/gateways/eway_test.rb
313
+ - test/unit/gateways/exact_test.rb
314
+ - test/unit/gateways/first_pay_test.rb
315
+ - test/unit/gateways/gateway_test.rb
316
+ - test/unit/gateways/instapay_test.rb
317
+ - test/unit/gateways/jetpay_test.rb
318
+ - test/unit/gateways/linkpoint_test.rb
319
+ - test/unit/gateways/merchant_e_solutions_test.rb
320
+ - test/unit/gateways/merchant_ware_test.rb
321
+ - test/unit/gateways/modern_payments_cim_test.rb
322
+ - test/unit/gateways/moneris_test.rb
323
+ - test/unit/gateways/net_registry_test.rb
324
+ - test/unit/gateways/netbilling_test.rb
325
+ - test/unit/gateways/ogone_test.rb
326
+ - test/unit/gateways/pay_junction_test.rb
327
+ - test/unit/gateways/pay_secure_test.rb
328
+ - test/unit/gateways/payflow_express_test.rb
329
+ - test/unit/gateways/payflow_express_uk_test.rb
330
+ - test/unit/gateways/payflow_nvp_uk_test.rb
331
+ - test/unit/gateways/payflow_test.rb
332
+ - test/unit/gateways/payflow_uk_test.rb
333
+ - test/unit/gateways/payment_express_test.rb
334
+ - test/unit/gateways/paypal_express_test.rb
335
+ - test/unit/gateways/paypal_test.rb
336
+ - test/unit/gateways/plugnpay_test.rb
337
+ - test/unit/gateways/psigate_test.rb
338
+ - test/unit/gateways/psl_card_test.rb
339
+ - test/unit/gateways/quickpay_test.rb
340
+ - test/unit/gateways/realex_test.rb
341
+ - test/unit/gateways/sage_bankcard_test.rb
342
+ - test/unit/gateways/sage_pay_test.rb
343
+ - test/unit/gateways/sage_virtual_check_test.rb
344
+ - test/unit/gateways/sallie_mae_test.rb
345
+ - test/unit/gateways/secure_pay_au_test.rb
346
+ - test/unit/gateways/secure_pay_tech_test.rb
347
+ - test/unit/gateways/secure_pay_test.rb
348
+ - test/unit/gateways/skip_jack_test.rb
349
+ - test/unit/gateways/trans_first_test.rb
350
+ - test/unit/gateways/trust_commerce_test.rb
351
+ - test/unit/gateways/usa_epay_test.rb
352
+ - test/unit/gateways/verifi_test.rb
353
+ - test/unit/gateways/viaklix_test.rb
354
+ - test/unit/gateways/wirecard_test.rb
355
+ - test/unit/generators/test_gateway_generator.rb
356
+ - test/unit/generators/test_generator_helper.rb
357
+ - test/unit/generators/test_integration_generator.rb
358
+ - test/unit/integrations/action_view_helper_test.rb
359
+ - test/unit/integrations/bogus_module_test.rb
360
+ - test/unit/integrations/chronopay_module_test.rb
361
+ - test/unit/integrations/gestpay_module_test.rb
362
+ - test/unit/integrations/helpers/bogus_helper_test.rb
363
+ - test/unit/integrations/helpers/chronopay_helper_test.rb
364
+ - test/unit/integrations/helpers/gestpay_helper_test.rb
365
+ - test/unit/integrations/helpers/hi_trust_helper_test.rb
366
+ - test/unit/integrations/helpers/nochex_helper_test.rb
367
+ - test/unit/integrations/helpers/paypal_helper_test.rb
368
+ - test/unit/integrations/helpers/quickpay_helper_test.rb
369
+ - test/unit/integrations/helpers/two_checkout_helper_test.rb
370
+ - test/unit/integrations/hi_trust_module_test.rb
371
+ - test/unit/integrations/nochex_module_test.rb
372
+ - test/unit/integrations/notifications/chronopay_notification_test.rb
373
+ - test/unit/integrations/notifications/gestpay_notification_test.rb
374
+ - test/unit/integrations/notifications/hi_trust_notification_test.rb
375
+ - test/unit/integrations/notifications/nochex_notification_test.rb
376
+ - test/unit/integrations/notifications/notification_test.rb
377
+ - test/unit/integrations/notifications/paypal_notification_test.rb
378
+ - test/unit/integrations/notifications/quickpay_notification_test.rb
379
+ - test/unit/integrations/notifications/two_checkout_notification_test.rb
380
+ - test/unit/integrations/paypal_module_test.rb
381
+ - test/unit/integrations/quickpay_module_test.rb
382
+ - test/unit/integrations/returns/chronopay_return_test.rb
383
+ - test/unit/integrations/returns/gestpay_return_test.rb
384
+ - test/unit/integrations/returns/hi_trust_return_test.rb
385
+ - test/unit/integrations/returns/nochex_return_test.rb
386
+ - test/unit/integrations/returns/paypal_return_test.rb
387
+ - test/unit/integrations/returns/return_test.rb
388
+ - test/unit/integrations/returns/two_checkout_return_test.rb
389
+ - test/unit/integrations/two_checkout_module_test.rb
390
+ - test/unit/post_data_test.rb
391
+ - test/unit/posts_data_test.rb
392
+ - test/unit/response_test.rb
393
+ - test/unit/utils_test.rb
394
+ - test/unit/validateable_test.rb
210
395
  has_rdoc: true
211
396
  homepage: http://activemerchant.org/
212
397
  licenses: []
213
398
 
214
399
  post_install_message:
215
- rdoc_options: []
216
-
400
+ rdoc_options:
401
+ - --charset=UTF-8
217
402
  require_paths:
218
403
  - lib
219
404
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -232,10 +417,171 @@ required_rubygems_version: !ruby/object:Gem::Requirement
232
417
  version: "0"
233
418
  requirements: []
234
419
 
235
- rubyforge_project: activemerchant
420
+ rubyforge_project:
236
421
  rubygems_version: 1.3.6
237
422
  signing_key:
238
423
  specification_version: 3
239
424
  summary: Framework and tools for dealing with credit card transactions.
240
- test_files: []
241
-
425
+ test_files:
426
+ - test/unit/credit_card_test.rb
427
+ - test/unit/credit_card_formatting_test.rb
428
+ - test/unit/country_test.rb
429
+ - test/unit/cvv_result_test.rb
430
+ - test/unit/response_test.rb
431
+ - test/unit/avs_result_test.rb
432
+ - test/unit/validateable_test.rb
433
+ - test/unit/country_code_test.rb
434
+ - test/unit/gateways/efsnet_test.rb
435
+ - test/unit/gateways/verifi_test.rb
436
+ - test/unit/gateways/beanstream_test.rb
437
+ - test/unit/gateways/payflow_express_test.rb
438
+ - test/unit/gateways/payment_express_test.rb
439
+ - test/unit/gateways/secure_pay_test.rb
440
+ - test/unit/gateways/gateway_test.rb
441
+ - test/unit/gateways/trust_commerce_test.rb
442
+ - test/unit/gateways/psl_card_test.rb
443
+ - test/unit/gateways/sallie_mae_test.rb
444
+ - test/unit/gateways/ogone_test.rb
445
+ - test/unit/gateways/eway_test.rb
446
+ - test/unit/gateways/wirecard_test.rb
447
+ - test/unit/gateways/sage_bankcard_test.rb
448
+ - test/unit/gateways/elavon_test.rb
449
+ - test/unit/gateways/exact_test.rb
450
+ - test/unit/gateways/secure_pay_tech_test.rb
451
+ - test/unit/gateways/netbilling_test.rb
452
+ - test/unit/gateways/payflow_test.rb
453
+ - test/unit/gateways/trans_first_test.rb
454
+ - test/unit/gateways/net_registry_test.rb
455
+ - test/unit/gateways/psigate_test.rb
456
+ - test/unit/gateways/paypal_express_test.rb
457
+ - test/unit/gateways/jetpay_test.rb
458
+ - test/unit/gateways/linkpoint_test.rb
459
+ - test/unit/gateways/payflow_express_uk_test.rb
460
+ - test/unit/gateways/bogus_test.rb
461
+ - test/unit/gateways/card_stream_test.rb
462
+ - test/unit/gateways/braintree_test.rb
463
+ - test/unit/gateways/viaklix_test.rb
464
+ - test/unit/gateways/quickpay_test.rb
465
+ - test/unit/gateways/modern_payments_cim_test.rb
466
+ - test/unit/gateways/merchant_e_solutions_test.rb
467
+ - test/unit/gateways/moneris_test.rb
468
+ - test/unit/gateways/pay_secure_test.rb
469
+ - test/unit/gateways/merchant_ware_test.rb
470
+ - test/unit/gateways/first_pay_test.rb
471
+ - test/unit/gateways/skip_jack_test.rb
472
+ - test/unit/gateways/instapay_test.rb
473
+ - test/unit/gateways/paypal_test.rb
474
+ - test/unit/gateways/authorize_net_test.rb
475
+ - test/unit/gateways/payflow_nvp_uk_test.rb
476
+ - test/unit/gateways/beanstream_interac_test.rb
477
+ - test/unit/gateways/cyber_source_test.rb
478
+ - test/unit/gateways/authorize_net_cim_test.rb
479
+ - test/unit/gateways/pay_junction_test.rb
480
+ - test/unit/gateways/realex_test.rb
481
+ - test/unit/gateways/payflow_uk_test.rb
482
+ - test/unit/gateways/secure_pay_au_test.rb
483
+ - test/unit/gateways/data_cash_test.rb
484
+ - test/unit/gateways/plugnpay_test.rb
485
+ - test/unit/gateways/sage_pay_test.rb
486
+ - test/unit/gateways/sage_virtual_check_test.rb
487
+ - test/unit/gateways/usa_epay_test.rb
488
+ - test/unit/post_data_test.rb
489
+ - test/unit/utils_test.rb
490
+ - test/unit/credit_card_methods_test.rb
491
+ - test/unit/connection_test.rb
492
+ - test/unit/generators/test_integration_generator.rb
493
+ - test/unit/generators/test_generator_helper.rb
494
+ - test/unit/generators/test_gateway_generator.rb
495
+ - test/unit/posts_data_test.rb
496
+ - test/unit/check_test.rb
497
+ - test/unit/expiry_date_test.rb
498
+ - test/unit/integrations/chronopay_module_test.rb
499
+ - test/unit/integrations/returns/paypal_return_test.rb
500
+ - test/unit/integrations/returns/return_test.rb
501
+ - test/unit/integrations/returns/gestpay_return_test.rb
502
+ - test/unit/integrations/returns/nochex_return_test.rb
503
+ - test/unit/integrations/returns/chronopay_return_test.rb
504
+ - test/unit/integrations/returns/two_checkout_return_test.rb
505
+ - test/unit/integrations/returns/hi_trust_return_test.rb
506
+ - test/unit/integrations/bogus_module_test.rb
507
+ - test/unit/integrations/gestpay_module_test.rb
508
+ - test/unit/integrations/paypal_module_test.rb
509
+ - test/unit/integrations/notifications/chronopay_notification_test.rb
510
+ - test/unit/integrations/notifications/two_checkout_notification_test.rb
511
+ - test/unit/integrations/notifications/paypal_notification_test.rb
512
+ - test/unit/integrations/notifications/nochex_notification_test.rb
513
+ - test/unit/integrations/notifications/notification_test.rb
514
+ - test/unit/integrations/notifications/hi_trust_notification_test.rb
515
+ - test/unit/integrations/notifications/gestpay_notification_test.rb
516
+ - test/unit/integrations/notifications/quickpay_notification_test.rb
517
+ - test/unit/integrations/action_view_helper_test.rb
518
+ - test/unit/integrations/helpers/paypal_helper_test.rb
519
+ - test/unit/integrations/helpers/chronopay_helper_test.rb
520
+ - test/unit/integrations/helpers/hi_trust_helper_test.rb
521
+ - test/unit/integrations/helpers/nochex_helper_test.rb
522
+ - test/unit/integrations/helpers/bogus_helper_test.rb
523
+ - test/unit/integrations/helpers/gestpay_helper_test.rb
524
+ - test/unit/integrations/helpers/two_checkout_helper_test.rb
525
+ - test/unit/integrations/helpers/quickpay_helper_test.rb
526
+ - test/unit/integrations/hi_trust_module_test.rb
527
+ - test/unit/integrations/quickpay_module_test.rb
528
+ - test/unit/integrations/nochex_module_test.rb
529
+ - test/unit/integrations/two_checkout_module_test.rb
530
+ - test/unit/base_test.rb
531
+ - test/remote/gateways/remote_plugnpay_test.rb
532
+ - test/remote/gateways/remote_first_pay_test.rb
533
+ - test/remote/gateways/remote_paypal_express_test.rb
534
+ - test/remote/gateways/remote_payflow_nvp_uk_test.rb
535
+ - test/remote/gateways/remote_sage_test.rb
536
+ - test/remote/gateways/remote_realex_test.rb
537
+ - test/remote/gateways/remote_netbilling_test.rb
538
+ - test/remote/gateways/remote_braintree_test.rb
539
+ - test/remote/gateways/remote_net_registry_test.rb
540
+ - test/remote/gateways/remote_payflow_express_test.rb
541
+ - test/remote/gateways/remote_authorize_net_cim_test.rb
542
+ - test/remote/gateways/remote_card_stream_test.rb
543
+ - test/remote/gateways/remote_sage_pay_test.rb
544
+ - test/remote/gateways/remote_psigate_test.rb
545
+ - test/remote/gateways/remote_instapay_test.rb
546
+ - test/remote/gateways/remote_payment_express_test.rb
547
+ - test/remote/gateways/remote_sage_bankcard_test.rb
548
+ - test/remote/gateways/remote_elavon_test.rb
549
+ - test/remote/gateways/remote_viaklix_test.rb
550
+ - test/remote/gateways/remote_beanstream_test.rb
551
+ - test/remote/gateways/remote_secure_pay_au_test.rb
552
+ - test/remote/gateways/remote_pay_secure_test.rb
553
+ - test/remote/gateways/remote_merchant_e_solutions_test.rb
554
+ - test/remote/gateways/remote_verifi_test.rb
555
+ - test/remote/gateways/remote_exact_test.rb
556
+ - test/remote/gateways/remote_secure_pay_tech_test.rb
557
+ - test/remote/gateways/remote_sage_virtual_check_test.rb
558
+ - test/remote/gateways/remote_merchant_ware_test.rb
559
+ - test/remote/gateways/remote_payflow_test.rb
560
+ - test/remote/gateways/remote_pay_junction_test.rb
561
+ - test/remote/gateways/remote_modern_payments_test.rb
562
+ - test/remote/gateways/remote_linkpoint_test.rb
563
+ - test/remote/gateways/remote_jetpay_test.rb
564
+ - test/remote/gateways/remote_skipjack_test.rb
565
+ - test/remote/gateways/remote_efsnet_test.rb
566
+ - test/remote/gateways/remote_modern_payments_cim_test.rb
567
+ - test/remote/gateways/remote_ogone_test.rb
568
+ - test/remote/gateways/remote_wirecard_test.rb
569
+ - test/remote/gateways/remote_transax_test.rb
570
+ - test/remote/gateways/remote_trust_commerce_test.rb
571
+ - test/remote/gateways/remote_authorize_net_test.rb
572
+ - test/remote/gateways/remote_secure_pay_test.rb
573
+ - test/remote/gateways/remote_beanstream_interac_test.rb
574
+ - test/remote/gateways/remote_moneris_test.rb
575
+ - test/remote/gateways/remote_quickpay_test.rb
576
+ - test/remote/gateways/remote_psl_card_test.rb
577
+ - test/remote/gateways/remote_cyber_source_test.rb
578
+ - test/remote/gateways/remote_payflow_uk_test.rb
579
+ - test/remote/gateways/remote_sallie_mae_test.rb
580
+ - test/remote/gateways/remote_data_cash_test.rb
581
+ - test/remote/gateways/remote_eway_test.rb
582
+ - test/remote/gateways/remote_trans_first_test.rb
583
+ - test/remote/gateways/remote_paypal_test.rb
584
+ - test/remote/gateways/remote_usa_epay_test.rb
585
+ - test/remote/integrations/remote_paypal_integration_test.rb
586
+ - test/remote/integrations/remote_gestpay_integration_test.rb
587
+ - test/test_helper.rb
metadata.gz.sig CHANGED
Binary file