johnideal-activemerchant 1.4.4
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/.gitignore +2 -0
- data/CHANGELOG +448 -0
- data/CONTRIBUTERS +106 -0
- data/MIT-LICENSE +20 -0
- data/README +134 -0
- data/Rakefile +167 -0
- data/VERSION +1 -0
- data/activemerchant.gemspec +484 -0
- data/gem-public_cert.pem +20 -0
- data/generators/gateway/USAGE +5 -0
- data/generators/gateway/gateway_generator.rb +61 -0
- data/generators/gateway/templates/gateway.rb +77 -0
- data/generators/gateway/templates/gateway_test.rb +49 -0
- data/generators/gateway/templates/remote_gateway_test.rb +57 -0
- data/generators/integration/USAGE +5 -0
- data/generators/integration/integration_generator.rb +68 -0
- data/generators/integration/templates/helper.rb +34 -0
- data/generators/integration/templates/helper_test.rb +54 -0
- data/generators/integration/templates/integration.rb +18 -0
- data/generators/integration/templates/module_test.rb +9 -0
- data/generators/integration/templates/notification.rb +100 -0
- data/generators/integration/templates/notification_test.rb +41 -0
- data/init.rb +3 -0
- data/lib/active_merchant/billing/avs_result.rb +98 -0
- data/lib/active_merchant/billing/base.rb +57 -0
- data/lib/active_merchant/billing/check.rb +68 -0
- data/lib/active_merchant/billing/credit_card.rb +159 -0
- data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
- data/lib/active_merchant/billing/credit_card_methods.rb +125 -0
- data/lib/active_merchant/billing/cvv_result.rb +38 -0
- data/lib/active_merchant/billing/expiry_date.rb +34 -0
- data/lib/active_merchant/billing/gateway.rb +158 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +657 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +703 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +233 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +98 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +406 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +595 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +229 -0
- data/lib/active_merchant/billing/gateways/eway.rb +277 -0
- data/lib/active_merchant/billing/gateways/exact.rb +222 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +396 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +154 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +283 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +214 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +205 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +236 -0
- data/lib/active_merchant/billing/gateways/payflow_express.rb +138 -0
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
- data/lib/active_merchant/billing/gateways/payment_express.rb +230 -0
- data/lib/active_merchant/billing/gateways/paymentech_orbital/paymentech_orbital_response.rb +72 -0
- data/lib/active_merchant/billing/gateways/paymentech_orbital.rb +170 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +325 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +108 -0
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +130 -0
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +20 -0
- data/lib/active_merchant/billing/gateways/plugnpay.rb +292 -0
- data/lib/active_merchant/billing/gateways/protx.rb +307 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +214 -0
- data/lib/active_merchant/billing/gateways/psl_card.rb +306 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +213 -0
- data/lib/active_merchant/billing/gateways/realex.rb +200 -0
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +110 -0
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
- data/lib/active_merchant/billing/gateways/sage.rb +146 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +157 -0
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +442 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +254 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
- data/lib/active_merchant/billing/gateways/transax.rb +26 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +418 -0
- data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +228 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +165 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
- data/lib/active_merchant/billing/gateways.rb +3 -0
- data/lib/active_merchant/billing/integrations/action_view_helper.rb +79 -0
- data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
- data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
- data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/bogus.rb +22 -0
- data/lib/active_merchant/billing/integrations/chronopay/helper.rb +81 -0
- data/lib/active_merchant/billing/integrations/chronopay/notification.rb +156 -0
- data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/chronopay.rb +22 -0
- data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
- data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
- data/lib/active_merchant/billing/integrations/gestpay/notification.rb +83 -0
- data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/gestpay.rb +26 -0
- data/lib/active_merchant/billing/integrations/helper.rb +93 -0
- data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
- data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
- data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
- data/lib/active_merchant/billing/integrations/hi_trust.rb +26 -0
- data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
- data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
- data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/nochex.rb +87 -0
- data/lib/active_merchant/billing/integrations/notification.rb +62 -0
- data/lib/active_merchant/billing/integrations/paypal/helper.rb +118 -0
- data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
- data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/paypal.rb +40 -0
- data/lib/active_merchant/billing/integrations/quickpay/helper.rb +72 -0
- data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
- data/lib/active_merchant/billing/integrations/quickpay.rb +18 -0
- data/lib/active_merchant/billing/integrations/return.rb +35 -0
- data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
- data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
- data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
- data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
- data/lib/active_merchant/billing/integrations.rb +22 -0
- data/lib/active_merchant/billing/response.rb +32 -0
- data/lib/active_merchant/lib/connection.rb +171 -0
- data/lib/active_merchant/lib/country.rb +319 -0
- data/lib/active_merchant/lib/error.rb +4 -0
- data/lib/active_merchant/lib/post_data.rb +22 -0
- data/lib/active_merchant/lib/posts_data.rb +47 -0
- data/lib/active_merchant/lib/requires_parameters.rb +16 -0
- data/lib/active_merchant/lib/utils.rb +18 -0
- data/lib/active_merchant/lib/validateable.rb +76 -0
- data/lib/active_merchant.rb +60 -0
- data/lib/certs/cacert.pem +7815 -0
- data/lib/support/gateway_support.rb +58 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/test/fixtures.yml +335 -0
- data/test/remote/gateways/remote_authorize_net_cim_test.rb +459 -0
- data/test/remote/gateways/remote_authorize_net_test.rb +145 -0
- data/test/remote/gateways/remote_beanstream_interac_test.rb +53 -0
- data/test/remote/gateways/remote_beanstream_test.rb +150 -0
- data/test/remote/gateways/remote_braintree_test.rb +154 -0
- data/test/remote/gateways/remote_card_stream_test.rb +148 -0
- data/test/remote/gateways/remote_cyber_source_test.rb +144 -0
- data/test/remote/gateways/remote_data_cash_test.rb +357 -0
- data/test/remote/gateways/remote_efsnet_test.rb +81 -0
- data/test/remote/gateways/remote_eway_test.rb +74 -0
- data/test/remote/gateways/remote_exact_test.rb +60 -0
- data/test/remote/gateways/remote_instapay_test.rb +61 -0
- data/test/remote/gateways/remote_linkpoint_test.rb +112 -0
- data/test/remote/gateways/remote_merchant_e_solutions_test.rb +173 -0
- data/test/remote/gateways/remote_merchant_ware_test.rb +113 -0
- data/test/remote/gateways/remote_modern_payments_cim_test.rb +58 -0
- data/test/remote/gateways/remote_modern_payments_test.rb +43 -0
- data/test/remote/gateways/remote_moneris_test.rb +82 -0
- data/test/remote/gateways/remote_net_registry_test.rb +85 -0
- data/test/remote/gateways/remote_netbilling_test.rb +70 -0
- data/test/remote/gateways/remote_pay_junction_test.rb +143 -0
- data/test/remote/gateways/remote_pay_secure_test.rb +39 -0
- data/test/remote/gateways/remote_payflow_express_test.rb +50 -0
- data/test/remote/gateways/remote_payflow_test.rb +237 -0
- data/test/remote/gateways/remote_payflow_uk_test.rb +173 -0
- data/test/remote/gateways/remote_payment_express_test.rb +136 -0
- data/test/remote/gateways/remote_paymentech_orbital_test.rb +57 -0
- data/test/remote/gateways/remote_paypal_express_test.rb +49 -0
- data/test/remote/gateways/remote_paypal_test.rb +167 -0
- data/test/remote/gateways/remote_plugnpay_test.rb +72 -0
- data/test/remote/gateways/remote_protx_test.rb +219 -0
- data/test/remote/gateways/remote_psigate_test.rb +50 -0
- data/test/remote/gateways/remote_psl_card_test.rb +125 -0
- data/test/remote/gateways/remote_quickpay_test.rb +190 -0
- data/test/remote/gateways/remote_realex_test.rb +224 -0
- data/test/remote/gateways/remote_sage_bankcard_test.rb +109 -0
- data/test/remote/gateways/remote_sage_test.rb +87 -0
- data/test/remote/gateways/remote_sage_virtual_check_test.rb +62 -0
- data/test/remote/gateways/remote_secure_pay_au_test.rb +40 -0
- data/test/remote/gateways/remote_secure_pay_tech_test.rb +37 -0
- data/test/remote/gateways/remote_secure_pay_test.rb +28 -0
- data/test/remote/gateways/remote_skipjack_test.rb +105 -0
- data/test/remote/gateways/remote_trans_first_test.rb +34 -0
- data/test/remote/gateways/remote_transax_test.rb +112 -0
- data/test/remote/gateways/remote_trust_commerce_test.rb +152 -0
- data/test/remote/gateways/remote_usa_epay_test.rb +46 -0
- data/test/remote/gateways/remote_verifi_test.rb +107 -0
- data/test/remote/gateways/remote_viaklix_test.rb +43 -0
- data/test/remote/gateways/remote_wirecard_test.rb +111 -0
- data/test/remote/integrations/remote_gestpay_integration_test.rb +37 -0
- data/test/remote/integrations/remote_paypal_integration_test.rb +26 -0
- data/test/test_helper.rb +182 -0
- data/test/unit/avs_result_test.rb +59 -0
- data/test/unit/base_test.rb +55 -0
- data/test/unit/check_test.rb +88 -0
- data/test/unit/connection_test.rb +129 -0
- data/test/unit/country_code_test.rb +33 -0
- data/test/unit/country_test.rb +64 -0
- data/test/unit/credit_card_formatting_test.rb +19 -0
- data/test/unit/credit_card_methods_test.rb +170 -0
- data/test/unit/credit_card_test.rb +318 -0
- data/test/unit/cvv_result_test.rb +33 -0
- data/test/unit/expiry_date_test.rb +32 -0
- data/test/unit/gateways/authorize_net_cim_test.rb +638 -0
- data/test/unit/gateways/authorize_net_test.rb +290 -0
- data/test/unit/gateways/beanstream_interac_test.rb +51 -0
- data/test/unit/gateways/beanstream_test.rb +108 -0
- data/test/unit/gateways/bogus_test.rb +46 -0
- data/test/unit/gateways/braintree_test.rb +126 -0
- data/test/unit/gateways/card_stream_test.rb +90 -0
- data/test/unit/gateways/cyber_source_test.rb +188 -0
- data/test/unit/gateways/data_cash_test.rb +133 -0
- data/test/unit/gateways/efsnet_test.rb +123 -0
- data/test/unit/gateways/eway_test.rb +118 -0
- data/test/unit/gateways/exact_test.rb +156 -0
- data/test/unit/gateways/gateway_test.rb +48 -0
- data/test/unit/gateways/instapay_test.rb +102 -0
- data/test/unit/gateways/linkpoint_test.rb +167 -0
- data/test/unit/gateways/merchant_e_solutions_test.rb +169 -0
- data/test/unit/gateways/merchant_ware_test.rb +188 -0
- data/test/unit/gateways/modern_payments_cim_test.rb +171 -0
- data/test/unit/gateways/moneris_test.rb +158 -0
- data/test/unit/gateways/net_registry_test.rb +416 -0
- data/test/unit/gateways/netbilling_test.rb +54 -0
- data/test/unit/gateways/pay_junction_test.rb +123 -0
- data/test/unit/gateways/pay_secure_test.rb +71 -0
- data/test/unit/gateways/payflow_express_test.rb +173 -0
- data/test/unit/gateways/payflow_express_uk_test.rb +86 -0
- data/test/unit/gateways/payflow_test.rb +305 -0
- data/test/unit/gateways/payflow_uk_test.rb +30 -0
- data/test/unit/gateways/payment_express_test.rb +195 -0
- data/test/unit/gateways/paymentech_orbital_test.rb +117 -0
- data/test/unit/gateways/paypal_express_test.rb +382 -0
- data/test/unit/gateways/paypal_test.rb +520 -0
- data/test/unit/gateways/plugnpay_test.rb +86 -0
- data/test/unit/gateways/protx_test.rb +139 -0
- data/test/unit/gateways/psigate_test.rb +169 -0
- data/test/unit/gateways/psl_card_test.rb +64 -0
- data/test/unit/gateways/quickpay_test.rb +112 -0
- data/test/unit/gateways/realex_test.rb +151 -0
- data/test/unit/gateways/sage_bankcard_test.rb +162 -0
- data/test/unit/gateways/sage_virtual_check_test.rb +71 -0
- data/test/unit/gateways/secure_pay_au_test.rb +207 -0
- data/test/unit/gateways/secure_pay_tech_test.rb +44 -0
- data/test/unit/gateways/secure_pay_test.rb +87 -0
- data/test/unit/gateways/skip_jack_test.rb +133 -0
- data/test/unit/gateways/trans_first_test.rb +112 -0
- data/test/unit/gateways/trust_commerce_test.rb +90 -0
- data/test/unit/gateways/usa_epay_test.rb +128 -0
- data/test/unit/gateways/verifi_test.rb +96 -0
- data/test/unit/gateways/viaklix_test.rb +78 -0
- data/test/unit/gateways/wirecard_test.rb +250 -0
- data/test/unit/generators/test_gateway_generator.rb +46 -0
- data/test/unit/generators/test_generator_helper.rb +20 -0
- data/test/unit/generators/test_integration_generator.rb +53 -0
- data/test/unit/integrations/action_view_helper_test.rb +50 -0
- data/test/unit/integrations/bogus_module_test.rb +20 -0
- data/test/unit/integrations/chronopay_module_test.rb +13 -0
- data/test/unit/integrations/gestpay_module_test.rb +14 -0
- data/test/unit/integrations/helpers/bogus_helper_test.rb +28 -0
- data/test/unit/integrations/helpers/chronopay_helper_test.rb +67 -0
- data/test/unit/integrations/helpers/gestpay_helper_test.rb +100 -0
- data/test/unit/integrations/helpers/hi_trust_helper_test.rb +16 -0
- data/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
- data/test/unit/integrations/helpers/paypal_helper_test.rb +162 -0
- data/test/unit/integrations/helpers/quickpay_helper_test.rb +40 -0
- data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
- data/test/unit/integrations/hi_trust_module_test.rb +13 -0
- data/test/unit/integrations/nochex_module_test.rb +13 -0
- data/test/unit/integrations/notifications/chronopay_notification_test.rb +66 -0
- data/test/unit/integrations/notifications/gestpay_notification_test.rb +60 -0
- data/test/unit/integrations/notifications/hi_trust_notification_test.rb +59 -0
- data/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
- data/test/unit/integrations/notifications/notification_test.rb +54 -0
- data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
- data/test/unit/integrations/notifications/quickpay_notification_test.rb +69 -0
- data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
- data/test/unit/integrations/paypal_module_test.rb +28 -0
- data/test/unit/integrations/quickpay_module_test.rb +9 -0
- data/test/unit/integrations/returns/chronopay_return_test.rb +11 -0
- data/test/unit/integrations/returns/gestpay_return_test.rb +10 -0
- data/test/unit/integrations/returns/hi_trust_return_test.rb +24 -0
- data/test/unit/integrations/returns/nochex_return_test.rb +10 -0
- data/test/unit/integrations/returns/paypal_return_test.rb +10 -0
- data/test/unit/integrations/returns/return_test.rb +11 -0
- data/test/unit/integrations/returns/two_checkout_return_test.rb +24 -0
- data/test/unit/integrations/two_checkout_module_test.rb +13 -0
- data/test/unit/post_data_test.rb +55 -0
- data/test/unit/posts_data_test.rb +48 -0
- data/test/unit/response_test.rb +28 -0
- data/test/unit/utils_test.rb +7 -0
- data/test/unit/validateable_test.rb +60 -0
- metadata +503 -0
|
@@ -0,0 +1,484 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |s|
|
|
4
|
+
s.name = %q{activemerchant}
|
|
5
|
+
s.version = "1.4.4"
|
|
6
|
+
|
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
|
+
s.authors = ["Tobias Luetke"]
|
|
9
|
+
s.date = %q{2009-08-04}
|
|
10
|
+
s.email = %q{tobi@leetsoft.com}
|
|
11
|
+
s.extra_rdoc_files = [
|
|
12
|
+
"README"
|
|
13
|
+
]
|
|
14
|
+
s.files = [
|
|
15
|
+
".gitignore",
|
|
16
|
+
"CHANGELOG",
|
|
17
|
+
"CONTRIBUTERS",
|
|
18
|
+
"MIT-LICENSE",
|
|
19
|
+
"README",
|
|
20
|
+
"Rakefile",
|
|
21
|
+
"VERSION",
|
|
22
|
+
"activemerchant.gemspec",
|
|
23
|
+
"gem-public_cert.pem",
|
|
24
|
+
"generators/gateway/USAGE",
|
|
25
|
+
"generators/gateway/gateway_generator.rb",
|
|
26
|
+
"generators/gateway/templates/gateway.rb",
|
|
27
|
+
"generators/gateway/templates/gateway_test.rb",
|
|
28
|
+
"generators/gateway/templates/remote_gateway_test.rb",
|
|
29
|
+
"generators/integration/USAGE",
|
|
30
|
+
"generators/integration/integration_generator.rb",
|
|
31
|
+
"generators/integration/templates/helper.rb",
|
|
32
|
+
"generators/integration/templates/helper_test.rb",
|
|
33
|
+
"generators/integration/templates/integration.rb",
|
|
34
|
+
"generators/integration/templates/module_test.rb",
|
|
35
|
+
"generators/integration/templates/notification.rb",
|
|
36
|
+
"generators/integration/templates/notification_test.rb",
|
|
37
|
+
"init.rb",
|
|
38
|
+
"lib/active_merchant.rb",
|
|
39
|
+
"lib/active_merchant/billing/avs_result.rb",
|
|
40
|
+
"lib/active_merchant/billing/base.rb",
|
|
41
|
+
"lib/active_merchant/billing/check.rb",
|
|
42
|
+
"lib/active_merchant/billing/credit_card.rb",
|
|
43
|
+
"lib/active_merchant/billing/credit_card_formatting.rb",
|
|
44
|
+
"lib/active_merchant/billing/credit_card_methods.rb",
|
|
45
|
+
"lib/active_merchant/billing/cvv_result.rb",
|
|
46
|
+
"lib/active_merchant/billing/expiry_date.rb",
|
|
47
|
+
"lib/active_merchant/billing/gateway.rb",
|
|
48
|
+
"lib/active_merchant/billing/gateways.rb",
|
|
49
|
+
"lib/active_merchant/billing/gateways/authorize_net.rb",
|
|
50
|
+
"lib/active_merchant/billing/gateways/authorize_net_cim.rb",
|
|
51
|
+
"lib/active_merchant/billing/gateways/beanstream.rb",
|
|
52
|
+
"lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb",
|
|
53
|
+
"lib/active_merchant/billing/gateways/beanstream_interac.rb",
|
|
54
|
+
"lib/active_merchant/billing/gateways/bogus.rb",
|
|
55
|
+
"lib/active_merchant/billing/gateways/braintree.rb",
|
|
56
|
+
"lib/active_merchant/billing/gateways/card_stream.rb",
|
|
57
|
+
"lib/active_merchant/billing/gateways/cyber_source.rb",
|
|
58
|
+
"lib/active_merchant/billing/gateways/data_cash.rb",
|
|
59
|
+
"lib/active_merchant/billing/gateways/efsnet.rb",
|
|
60
|
+
"lib/active_merchant/billing/gateways/eway.rb",
|
|
61
|
+
"lib/active_merchant/billing/gateways/exact.rb",
|
|
62
|
+
"lib/active_merchant/billing/gateways/instapay.rb",
|
|
63
|
+
"lib/active_merchant/billing/gateways/linkpoint.rb",
|
|
64
|
+
"lib/active_merchant/billing/gateways/merchant_e_solutions.rb",
|
|
65
|
+
"lib/active_merchant/billing/gateways/merchant_ware.rb",
|
|
66
|
+
"lib/active_merchant/billing/gateways/modern_payments.rb",
|
|
67
|
+
"lib/active_merchant/billing/gateways/modern_payments_cim.rb",
|
|
68
|
+
"lib/active_merchant/billing/gateways/moneris.rb",
|
|
69
|
+
"lib/active_merchant/billing/gateways/net_registry.rb",
|
|
70
|
+
"lib/active_merchant/billing/gateways/netbilling.rb",
|
|
71
|
+
"lib/active_merchant/billing/gateways/pay_junction.rb",
|
|
72
|
+
"lib/active_merchant/billing/gateways/pay_secure.rb",
|
|
73
|
+
"lib/active_merchant/billing/gateways/payflow.rb",
|
|
74
|
+
"lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb",
|
|
75
|
+
"lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb",
|
|
76
|
+
"lib/active_merchant/billing/gateways/payflow/payflow_response.rb",
|
|
77
|
+
"lib/active_merchant/billing/gateways/payflow_express.rb",
|
|
78
|
+
"lib/active_merchant/billing/gateways/payflow_express_uk.rb",
|
|
79
|
+
"lib/active_merchant/billing/gateways/payflow_uk.rb",
|
|
80
|
+
"lib/active_merchant/billing/gateways/payment_express.rb",
|
|
81
|
+
"lib/active_merchant/billing/gateways/paymentech_orbital.rb",
|
|
82
|
+
"lib/active_merchant/billing/gateways/paymentech_orbital/paymentech_orbital_response.rb",
|
|
83
|
+
"lib/active_merchant/billing/gateways/paypal.rb",
|
|
84
|
+
"lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb",
|
|
85
|
+
"lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb",
|
|
86
|
+
"lib/active_merchant/billing/gateways/paypal_ca.rb",
|
|
87
|
+
"lib/active_merchant/billing/gateways/paypal_express.rb",
|
|
88
|
+
"lib/active_merchant/billing/gateways/paypal_express_common.rb",
|
|
89
|
+
"lib/active_merchant/billing/gateways/plugnpay.rb",
|
|
90
|
+
"lib/active_merchant/billing/gateways/protx.rb",
|
|
91
|
+
"lib/active_merchant/billing/gateways/psigate.rb",
|
|
92
|
+
"lib/active_merchant/billing/gateways/psl_card.rb",
|
|
93
|
+
"lib/active_merchant/billing/gateways/quickpay.rb",
|
|
94
|
+
"lib/active_merchant/billing/gateways/realex.rb",
|
|
95
|
+
"lib/active_merchant/billing/gateways/sage.rb",
|
|
96
|
+
"lib/active_merchant/billing/gateways/sage/sage_bankcard.rb",
|
|
97
|
+
"lib/active_merchant/billing/gateways/sage/sage_core.rb",
|
|
98
|
+
"lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb",
|
|
99
|
+
"lib/active_merchant/billing/gateways/secure_pay.rb",
|
|
100
|
+
"lib/active_merchant/billing/gateways/secure_pay_au.rb",
|
|
101
|
+
"lib/active_merchant/billing/gateways/secure_pay_tech.rb",
|
|
102
|
+
"lib/active_merchant/billing/gateways/skip_jack.rb",
|
|
103
|
+
"lib/active_merchant/billing/gateways/smart_ps.rb",
|
|
104
|
+
"lib/active_merchant/billing/gateways/trans_first.rb",
|
|
105
|
+
"lib/active_merchant/billing/gateways/transax.rb",
|
|
106
|
+
"lib/active_merchant/billing/gateways/trust_commerce.rb",
|
|
107
|
+
"lib/active_merchant/billing/gateways/usa_epay.rb",
|
|
108
|
+
"lib/active_merchant/billing/gateways/verifi.rb",
|
|
109
|
+
"lib/active_merchant/billing/gateways/viaklix.rb",
|
|
110
|
+
"lib/active_merchant/billing/gateways/wirecard.rb",
|
|
111
|
+
"lib/active_merchant/billing/integrations.rb",
|
|
112
|
+
"lib/active_merchant/billing/integrations/action_view_helper.rb",
|
|
113
|
+
"lib/active_merchant/billing/integrations/bogus.rb",
|
|
114
|
+
"lib/active_merchant/billing/integrations/bogus/helper.rb",
|
|
115
|
+
"lib/active_merchant/billing/integrations/bogus/notification.rb",
|
|
116
|
+
"lib/active_merchant/billing/integrations/bogus/return.rb",
|
|
117
|
+
"lib/active_merchant/billing/integrations/chronopay.rb",
|
|
118
|
+
"lib/active_merchant/billing/integrations/chronopay/helper.rb",
|
|
119
|
+
"lib/active_merchant/billing/integrations/chronopay/notification.rb",
|
|
120
|
+
"lib/active_merchant/billing/integrations/chronopay/return.rb",
|
|
121
|
+
"lib/active_merchant/billing/integrations/gestpay.rb",
|
|
122
|
+
"lib/active_merchant/billing/integrations/gestpay/common.rb",
|
|
123
|
+
"lib/active_merchant/billing/integrations/gestpay/helper.rb",
|
|
124
|
+
"lib/active_merchant/billing/integrations/gestpay/notification.rb",
|
|
125
|
+
"lib/active_merchant/billing/integrations/gestpay/return.rb",
|
|
126
|
+
"lib/active_merchant/billing/integrations/helper.rb",
|
|
127
|
+
"lib/active_merchant/billing/integrations/hi_trust.rb",
|
|
128
|
+
"lib/active_merchant/billing/integrations/hi_trust/helper.rb",
|
|
129
|
+
"lib/active_merchant/billing/integrations/hi_trust/notification.rb",
|
|
130
|
+
"lib/active_merchant/billing/integrations/hi_trust/return.rb",
|
|
131
|
+
"lib/active_merchant/billing/integrations/nochex.rb",
|
|
132
|
+
"lib/active_merchant/billing/integrations/nochex/helper.rb",
|
|
133
|
+
"lib/active_merchant/billing/integrations/nochex/notification.rb",
|
|
134
|
+
"lib/active_merchant/billing/integrations/nochex/return.rb",
|
|
135
|
+
"lib/active_merchant/billing/integrations/notification.rb",
|
|
136
|
+
"lib/active_merchant/billing/integrations/paypal.rb",
|
|
137
|
+
"lib/active_merchant/billing/integrations/paypal/helper.rb",
|
|
138
|
+
"lib/active_merchant/billing/integrations/paypal/notification.rb",
|
|
139
|
+
"lib/active_merchant/billing/integrations/paypal/return.rb",
|
|
140
|
+
"lib/active_merchant/billing/integrations/quickpay.rb",
|
|
141
|
+
"lib/active_merchant/billing/integrations/quickpay/helper.rb",
|
|
142
|
+
"lib/active_merchant/billing/integrations/quickpay/notification.rb",
|
|
143
|
+
"lib/active_merchant/billing/integrations/return.rb",
|
|
144
|
+
"lib/active_merchant/billing/integrations/two_checkout.rb",
|
|
145
|
+
"lib/active_merchant/billing/integrations/two_checkout/helper.rb",
|
|
146
|
+
"lib/active_merchant/billing/integrations/two_checkout/notification.rb",
|
|
147
|
+
"lib/active_merchant/billing/integrations/two_checkout/return.rb",
|
|
148
|
+
"lib/active_merchant/billing/response.rb",
|
|
149
|
+
"lib/active_merchant/lib/connection.rb",
|
|
150
|
+
"lib/active_merchant/lib/country.rb",
|
|
151
|
+
"lib/active_merchant/lib/error.rb",
|
|
152
|
+
"lib/active_merchant/lib/post_data.rb",
|
|
153
|
+
"lib/active_merchant/lib/posts_data.rb",
|
|
154
|
+
"lib/active_merchant/lib/requires_parameters.rb",
|
|
155
|
+
"lib/active_merchant/lib/utils.rb",
|
|
156
|
+
"lib/active_merchant/lib/validateable.rb",
|
|
157
|
+
"lib/certs/cacert.pem",
|
|
158
|
+
"lib/support/gateway_support.rb",
|
|
159
|
+
"script/destroy",
|
|
160
|
+
"script/generate",
|
|
161
|
+
"test/fixtures.yml",
|
|
162
|
+
"test/remote/gateways/remote_authorize_net_cim_test.rb",
|
|
163
|
+
"test/remote/gateways/remote_authorize_net_test.rb",
|
|
164
|
+
"test/remote/gateways/remote_beanstream_interac_test.rb",
|
|
165
|
+
"test/remote/gateways/remote_beanstream_test.rb",
|
|
166
|
+
"test/remote/gateways/remote_braintree_test.rb",
|
|
167
|
+
"test/remote/gateways/remote_card_stream_test.rb",
|
|
168
|
+
"test/remote/gateways/remote_cyber_source_test.rb",
|
|
169
|
+
"test/remote/gateways/remote_data_cash_test.rb",
|
|
170
|
+
"test/remote/gateways/remote_efsnet_test.rb",
|
|
171
|
+
"test/remote/gateways/remote_eway_test.rb",
|
|
172
|
+
"test/remote/gateways/remote_exact_test.rb",
|
|
173
|
+
"test/remote/gateways/remote_instapay_test.rb",
|
|
174
|
+
"test/remote/gateways/remote_linkpoint_test.rb",
|
|
175
|
+
"test/remote/gateways/remote_merchant_e_solutions_test.rb",
|
|
176
|
+
"test/remote/gateways/remote_merchant_ware_test.rb",
|
|
177
|
+
"test/remote/gateways/remote_modern_payments_cim_test.rb",
|
|
178
|
+
"test/remote/gateways/remote_modern_payments_test.rb",
|
|
179
|
+
"test/remote/gateways/remote_moneris_test.rb",
|
|
180
|
+
"test/remote/gateways/remote_net_registry_test.rb",
|
|
181
|
+
"test/remote/gateways/remote_netbilling_test.rb",
|
|
182
|
+
"test/remote/gateways/remote_pay_junction_test.rb",
|
|
183
|
+
"test/remote/gateways/remote_pay_secure_test.rb",
|
|
184
|
+
"test/remote/gateways/remote_payflow_express_test.rb",
|
|
185
|
+
"test/remote/gateways/remote_payflow_test.rb",
|
|
186
|
+
"test/remote/gateways/remote_payflow_uk_test.rb",
|
|
187
|
+
"test/remote/gateways/remote_payment_express_test.rb",
|
|
188
|
+
"test/remote/gateways/remote_paymentech_orbital_test.rb",
|
|
189
|
+
"test/remote/gateways/remote_paypal_express_test.rb",
|
|
190
|
+
"test/remote/gateways/remote_paypal_test.rb",
|
|
191
|
+
"test/remote/gateways/remote_plugnpay_test.rb",
|
|
192
|
+
"test/remote/gateways/remote_protx_test.rb",
|
|
193
|
+
"test/remote/gateways/remote_psigate_test.rb",
|
|
194
|
+
"test/remote/gateways/remote_psl_card_test.rb",
|
|
195
|
+
"test/remote/gateways/remote_quickpay_test.rb",
|
|
196
|
+
"test/remote/gateways/remote_realex_test.rb",
|
|
197
|
+
"test/remote/gateways/remote_sage_bankcard_test.rb",
|
|
198
|
+
"test/remote/gateways/remote_sage_test.rb",
|
|
199
|
+
"test/remote/gateways/remote_sage_virtual_check_test.rb",
|
|
200
|
+
"test/remote/gateways/remote_secure_pay_au_test.rb",
|
|
201
|
+
"test/remote/gateways/remote_secure_pay_tech_test.rb",
|
|
202
|
+
"test/remote/gateways/remote_secure_pay_test.rb",
|
|
203
|
+
"test/remote/gateways/remote_skipjack_test.rb",
|
|
204
|
+
"test/remote/gateways/remote_trans_first_test.rb",
|
|
205
|
+
"test/remote/gateways/remote_transax_test.rb",
|
|
206
|
+
"test/remote/gateways/remote_trust_commerce_test.rb",
|
|
207
|
+
"test/remote/gateways/remote_usa_epay_test.rb",
|
|
208
|
+
"test/remote/gateways/remote_verifi_test.rb",
|
|
209
|
+
"test/remote/gateways/remote_viaklix_test.rb",
|
|
210
|
+
"test/remote/gateways/remote_wirecard_test.rb",
|
|
211
|
+
"test/remote/integrations/remote_gestpay_integration_test.rb",
|
|
212
|
+
"test/remote/integrations/remote_paypal_integration_test.rb",
|
|
213
|
+
"test/test_helper.rb",
|
|
214
|
+
"test/unit/avs_result_test.rb",
|
|
215
|
+
"test/unit/base_test.rb",
|
|
216
|
+
"test/unit/check_test.rb",
|
|
217
|
+
"test/unit/connection_test.rb",
|
|
218
|
+
"test/unit/country_code_test.rb",
|
|
219
|
+
"test/unit/country_test.rb",
|
|
220
|
+
"test/unit/credit_card_formatting_test.rb",
|
|
221
|
+
"test/unit/credit_card_methods_test.rb",
|
|
222
|
+
"test/unit/credit_card_test.rb",
|
|
223
|
+
"test/unit/cvv_result_test.rb",
|
|
224
|
+
"test/unit/expiry_date_test.rb",
|
|
225
|
+
"test/unit/gateways/authorize_net_cim_test.rb",
|
|
226
|
+
"test/unit/gateways/authorize_net_test.rb",
|
|
227
|
+
"test/unit/gateways/beanstream_interac_test.rb",
|
|
228
|
+
"test/unit/gateways/beanstream_test.rb",
|
|
229
|
+
"test/unit/gateways/bogus_test.rb",
|
|
230
|
+
"test/unit/gateways/braintree_test.rb",
|
|
231
|
+
"test/unit/gateways/card_stream_test.rb",
|
|
232
|
+
"test/unit/gateways/cyber_source_test.rb",
|
|
233
|
+
"test/unit/gateways/data_cash_test.rb",
|
|
234
|
+
"test/unit/gateways/efsnet_test.rb",
|
|
235
|
+
"test/unit/gateways/eway_test.rb",
|
|
236
|
+
"test/unit/gateways/exact_test.rb",
|
|
237
|
+
"test/unit/gateways/gateway_test.rb",
|
|
238
|
+
"test/unit/gateways/instapay_test.rb",
|
|
239
|
+
"test/unit/gateways/linkpoint_test.rb",
|
|
240
|
+
"test/unit/gateways/merchant_e_solutions_test.rb",
|
|
241
|
+
"test/unit/gateways/merchant_ware_test.rb",
|
|
242
|
+
"test/unit/gateways/modern_payments_cim_test.rb",
|
|
243
|
+
"test/unit/gateways/moneris_test.rb",
|
|
244
|
+
"test/unit/gateways/net_registry_test.rb",
|
|
245
|
+
"test/unit/gateways/netbilling_test.rb",
|
|
246
|
+
"test/unit/gateways/pay_junction_test.rb",
|
|
247
|
+
"test/unit/gateways/pay_secure_test.rb",
|
|
248
|
+
"test/unit/gateways/payflow_express_test.rb",
|
|
249
|
+
"test/unit/gateways/payflow_express_uk_test.rb",
|
|
250
|
+
"test/unit/gateways/payflow_test.rb",
|
|
251
|
+
"test/unit/gateways/payflow_uk_test.rb",
|
|
252
|
+
"test/unit/gateways/payment_express_test.rb",
|
|
253
|
+
"test/unit/gateways/paymentech_orbital_test.rb",
|
|
254
|
+
"test/unit/gateways/paypal_express_test.rb",
|
|
255
|
+
"test/unit/gateways/paypal_test.rb",
|
|
256
|
+
"test/unit/gateways/plugnpay_test.rb",
|
|
257
|
+
"test/unit/gateways/protx_test.rb",
|
|
258
|
+
"test/unit/gateways/psigate_test.rb",
|
|
259
|
+
"test/unit/gateways/psl_card_test.rb",
|
|
260
|
+
"test/unit/gateways/quickpay_test.rb",
|
|
261
|
+
"test/unit/gateways/realex_test.rb",
|
|
262
|
+
"test/unit/gateways/sage_bankcard_test.rb",
|
|
263
|
+
"test/unit/gateways/sage_virtual_check_test.rb",
|
|
264
|
+
"test/unit/gateways/secure_pay_au_test.rb",
|
|
265
|
+
"test/unit/gateways/secure_pay_tech_test.rb",
|
|
266
|
+
"test/unit/gateways/secure_pay_test.rb",
|
|
267
|
+
"test/unit/gateways/skip_jack_test.rb",
|
|
268
|
+
"test/unit/gateways/trans_first_test.rb",
|
|
269
|
+
"test/unit/gateways/trust_commerce_test.rb",
|
|
270
|
+
"test/unit/gateways/usa_epay_test.rb",
|
|
271
|
+
"test/unit/gateways/verifi_test.rb",
|
|
272
|
+
"test/unit/gateways/viaklix_test.rb",
|
|
273
|
+
"test/unit/gateways/wirecard_test.rb",
|
|
274
|
+
"test/unit/generators/test_gateway_generator.rb",
|
|
275
|
+
"test/unit/generators/test_generator_helper.rb",
|
|
276
|
+
"test/unit/generators/test_integration_generator.rb",
|
|
277
|
+
"test/unit/integrations/action_view_helper_test.rb",
|
|
278
|
+
"test/unit/integrations/bogus_module_test.rb",
|
|
279
|
+
"test/unit/integrations/chronopay_module_test.rb",
|
|
280
|
+
"test/unit/integrations/gestpay_module_test.rb",
|
|
281
|
+
"test/unit/integrations/helpers/bogus_helper_test.rb",
|
|
282
|
+
"test/unit/integrations/helpers/chronopay_helper_test.rb",
|
|
283
|
+
"test/unit/integrations/helpers/gestpay_helper_test.rb",
|
|
284
|
+
"test/unit/integrations/helpers/hi_trust_helper_test.rb",
|
|
285
|
+
"test/unit/integrations/helpers/nochex_helper_test.rb",
|
|
286
|
+
"test/unit/integrations/helpers/paypal_helper_test.rb",
|
|
287
|
+
"test/unit/integrations/helpers/quickpay_helper_test.rb",
|
|
288
|
+
"test/unit/integrations/helpers/two_checkout_helper_test.rb",
|
|
289
|
+
"test/unit/integrations/hi_trust_module_test.rb",
|
|
290
|
+
"test/unit/integrations/nochex_module_test.rb",
|
|
291
|
+
"test/unit/integrations/notifications/chronopay_notification_test.rb",
|
|
292
|
+
"test/unit/integrations/notifications/gestpay_notification_test.rb",
|
|
293
|
+
"test/unit/integrations/notifications/hi_trust_notification_test.rb",
|
|
294
|
+
"test/unit/integrations/notifications/nochex_notification_test.rb",
|
|
295
|
+
"test/unit/integrations/notifications/notification_test.rb",
|
|
296
|
+
"test/unit/integrations/notifications/paypal_notification_test.rb",
|
|
297
|
+
"test/unit/integrations/notifications/quickpay_notification_test.rb",
|
|
298
|
+
"test/unit/integrations/notifications/two_checkout_notification_test.rb",
|
|
299
|
+
"test/unit/integrations/paypal_module_test.rb",
|
|
300
|
+
"test/unit/integrations/quickpay_module_test.rb",
|
|
301
|
+
"test/unit/integrations/returns/chronopay_return_test.rb",
|
|
302
|
+
"test/unit/integrations/returns/gestpay_return_test.rb",
|
|
303
|
+
"test/unit/integrations/returns/hi_trust_return_test.rb",
|
|
304
|
+
"test/unit/integrations/returns/nochex_return_test.rb",
|
|
305
|
+
"test/unit/integrations/returns/paypal_return_test.rb",
|
|
306
|
+
"test/unit/integrations/returns/return_test.rb",
|
|
307
|
+
"test/unit/integrations/returns/two_checkout_return_test.rb",
|
|
308
|
+
"test/unit/integrations/two_checkout_module_test.rb",
|
|
309
|
+
"test/unit/post_data_test.rb",
|
|
310
|
+
"test/unit/posts_data_test.rb",
|
|
311
|
+
"test/unit/response_test.rb",
|
|
312
|
+
"test/unit/utils_test.rb",
|
|
313
|
+
"test/unit/validateable_test.rb"
|
|
314
|
+
]
|
|
315
|
+
s.homepage = %q{http://activemerchant.org/}
|
|
316
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
317
|
+
s.require_paths = ["lib"]
|
|
318
|
+
s.rubygems_version = %q{1.3.4}
|
|
319
|
+
s.summary = %q{Framework and tools for dealing with credit card transactions.}
|
|
320
|
+
s.test_files = [
|
|
321
|
+
"test/remote/gateways/remote_authorize_net_cim_test.rb",
|
|
322
|
+
"test/remote/gateways/remote_authorize_net_test.rb",
|
|
323
|
+
"test/remote/gateways/remote_beanstream_interac_test.rb",
|
|
324
|
+
"test/remote/gateways/remote_beanstream_test.rb",
|
|
325
|
+
"test/remote/gateways/remote_braintree_test.rb",
|
|
326
|
+
"test/remote/gateways/remote_card_stream_test.rb",
|
|
327
|
+
"test/remote/gateways/remote_cyber_source_test.rb",
|
|
328
|
+
"test/remote/gateways/remote_data_cash_test.rb",
|
|
329
|
+
"test/remote/gateways/remote_efsnet_test.rb",
|
|
330
|
+
"test/remote/gateways/remote_eway_test.rb",
|
|
331
|
+
"test/remote/gateways/remote_exact_test.rb",
|
|
332
|
+
"test/remote/gateways/remote_instapay_test.rb",
|
|
333
|
+
"test/remote/gateways/remote_linkpoint_test.rb",
|
|
334
|
+
"test/remote/gateways/remote_merchant_e_solutions_test.rb",
|
|
335
|
+
"test/remote/gateways/remote_merchant_ware_test.rb",
|
|
336
|
+
"test/remote/gateways/remote_modern_payments_cim_test.rb",
|
|
337
|
+
"test/remote/gateways/remote_modern_payments_test.rb",
|
|
338
|
+
"test/remote/gateways/remote_moneris_test.rb",
|
|
339
|
+
"test/remote/gateways/remote_net_registry_test.rb",
|
|
340
|
+
"test/remote/gateways/remote_netbilling_test.rb",
|
|
341
|
+
"test/remote/gateways/remote_pay_junction_test.rb",
|
|
342
|
+
"test/remote/gateways/remote_pay_secure_test.rb",
|
|
343
|
+
"test/remote/gateways/remote_payflow_express_test.rb",
|
|
344
|
+
"test/remote/gateways/remote_payflow_test.rb",
|
|
345
|
+
"test/remote/gateways/remote_payflow_uk_test.rb",
|
|
346
|
+
"test/remote/gateways/remote_payment_express_test.rb",
|
|
347
|
+
"test/remote/gateways/remote_paymentech_orbital_test.rb",
|
|
348
|
+
"test/remote/gateways/remote_paypal_express_test.rb",
|
|
349
|
+
"test/remote/gateways/remote_paypal_test.rb",
|
|
350
|
+
"test/remote/gateways/remote_plugnpay_test.rb",
|
|
351
|
+
"test/remote/gateways/remote_protx_test.rb",
|
|
352
|
+
"test/remote/gateways/remote_psigate_test.rb",
|
|
353
|
+
"test/remote/gateways/remote_psl_card_test.rb",
|
|
354
|
+
"test/remote/gateways/remote_quickpay_test.rb",
|
|
355
|
+
"test/remote/gateways/remote_realex_test.rb",
|
|
356
|
+
"test/remote/gateways/remote_sage_bankcard_test.rb",
|
|
357
|
+
"test/remote/gateways/remote_sage_test.rb",
|
|
358
|
+
"test/remote/gateways/remote_sage_virtual_check_test.rb",
|
|
359
|
+
"test/remote/gateways/remote_secure_pay_au_test.rb",
|
|
360
|
+
"test/remote/gateways/remote_secure_pay_tech_test.rb",
|
|
361
|
+
"test/remote/gateways/remote_secure_pay_test.rb",
|
|
362
|
+
"test/remote/gateways/remote_skipjack_test.rb",
|
|
363
|
+
"test/remote/gateways/remote_trans_first_test.rb",
|
|
364
|
+
"test/remote/gateways/remote_transax_test.rb",
|
|
365
|
+
"test/remote/gateways/remote_trust_commerce_test.rb",
|
|
366
|
+
"test/remote/gateways/remote_usa_epay_test.rb",
|
|
367
|
+
"test/remote/gateways/remote_verifi_test.rb",
|
|
368
|
+
"test/remote/gateways/remote_viaklix_test.rb",
|
|
369
|
+
"test/remote/gateways/remote_wirecard_test.rb",
|
|
370
|
+
"test/remote/integrations/remote_gestpay_integration_test.rb",
|
|
371
|
+
"test/remote/integrations/remote_paypal_integration_test.rb",
|
|
372
|
+
"test/test_helper.rb",
|
|
373
|
+
"test/unit/avs_result_test.rb",
|
|
374
|
+
"test/unit/base_test.rb",
|
|
375
|
+
"test/unit/check_test.rb",
|
|
376
|
+
"test/unit/connection_test.rb",
|
|
377
|
+
"test/unit/country_code_test.rb",
|
|
378
|
+
"test/unit/country_test.rb",
|
|
379
|
+
"test/unit/credit_card_formatting_test.rb",
|
|
380
|
+
"test/unit/credit_card_methods_test.rb",
|
|
381
|
+
"test/unit/credit_card_test.rb",
|
|
382
|
+
"test/unit/cvv_result_test.rb",
|
|
383
|
+
"test/unit/expiry_date_test.rb",
|
|
384
|
+
"test/unit/gateways/authorize_net_cim_test.rb",
|
|
385
|
+
"test/unit/gateways/authorize_net_test.rb",
|
|
386
|
+
"test/unit/gateways/beanstream_interac_test.rb",
|
|
387
|
+
"test/unit/gateways/beanstream_test.rb",
|
|
388
|
+
"test/unit/gateways/bogus_test.rb",
|
|
389
|
+
"test/unit/gateways/braintree_test.rb",
|
|
390
|
+
"test/unit/gateways/card_stream_test.rb",
|
|
391
|
+
"test/unit/gateways/cyber_source_test.rb",
|
|
392
|
+
"test/unit/gateways/data_cash_test.rb",
|
|
393
|
+
"test/unit/gateways/efsnet_test.rb",
|
|
394
|
+
"test/unit/gateways/eway_test.rb",
|
|
395
|
+
"test/unit/gateways/exact_test.rb",
|
|
396
|
+
"test/unit/gateways/gateway_test.rb",
|
|
397
|
+
"test/unit/gateways/instapay_test.rb",
|
|
398
|
+
"test/unit/gateways/linkpoint_test.rb",
|
|
399
|
+
"test/unit/gateways/merchant_e_solutions_test.rb",
|
|
400
|
+
"test/unit/gateways/merchant_ware_test.rb",
|
|
401
|
+
"test/unit/gateways/modern_payments_cim_test.rb",
|
|
402
|
+
"test/unit/gateways/moneris_test.rb",
|
|
403
|
+
"test/unit/gateways/net_registry_test.rb",
|
|
404
|
+
"test/unit/gateways/netbilling_test.rb",
|
|
405
|
+
"test/unit/gateways/pay_junction_test.rb",
|
|
406
|
+
"test/unit/gateways/pay_secure_test.rb",
|
|
407
|
+
"test/unit/gateways/payflow_express_test.rb",
|
|
408
|
+
"test/unit/gateways/payflow_express_uk_test.rb",
|
|
409
|
+
"test/unit/gateways/payflow_test.rb",
|
|
410
|
+
"test/unit/gateways/payflow_uk_test.rb",
|
|
411
|
+
"test/unit/gateways/payment_express_test.rb",
|
|
412
|
+
"test/unit/gateways/paymentech_orbital_test.rb",
|
|
413
|
+
"test/unit/gateways/paypal_express_test.rb",
|
|
414
|
+
"test/unit/gateways/paypal_test.rb",
|
|
415
|
+
"test/unit/gateways/plugnpay_test.rb",
|
|
416
|
+
"test/unit/gateways/protx_test.rb",
|
|
417
|
+
"test/unit/gateways/psigate_test.rb",
|
|
418
|
+
"test/unit/gateways/psl_card_test.rb",
|
|
419
|
+
"test/unit/gateways/quickpay_test.rb",
|
|
420
|
+
"test/unit/gateways/realex_test.rb",
|
|
421
|
+
"test/unit/gateways/sage_bankcard_test.rb",
|
|
422
|
+
"test/unit/gateways/sage_virtual_check_test.rb",
|
|
423
|
+
"test/unit/gateways/secure_pay_au_test.rb",
|
|
424
|
+
"test/unit/gateways/secure_pay_tech_test.rb",
|
|
425
|
+
"test/unit/gateways/secure_pay_test.rb",
|
|
426
|
+
"test/unit/gateways/skip_jack_test.rb",
|
|
427
|
+
"test/unit/gateways/trans_first_test.rb",
|
|
428
|
+
"test/unit/gateways/trust_commerce_test.rb",
|
|
429
|
+
"test/unit/gateways/usa_epay_test.rb",
|
|
430
|
+
"test/unit/gateways/verifi_test.rb",
|
|
431
|
+
"test/unit/gateways/viaklix_test.rb",
|
|
432
|
+
"test/unit/gateways/wirecard_test.rb",
|
|
433
|
+
"test/unit/generators/test_gateway_generator.rb",
|
|
434
|
+
"test/unit/generators/test_generator_helper.rb",
|
|
435
|
+
"test/unit/generators/test_integration_generator.rb",
|
|
436
|
+
"test/unit/integrations/action_view_helper_test.rb",
|
|
437
|
+
"test/unit/integrations/bogus_module_test.rb",
|
|
438
|
+
"test/unit/integrations/chronopay_module_test.rb",
|
|
439
|
+
"test/unit/integrations/gestpay_module_test.rb",
|
|
440
|
+
"test/unit/integrations/helpers/bogus_helper_test.rb",
|
|
441
|
+
"test/unit/integrations/helpers/chronopay_helper_test.rb",
|
|
442
|
+
"test/unit/integrations/helpers/gestpay_helper_test.rb",
|
|
443
|
+
"test/unit/integrations/helpers/hi_trust_helper_test.rb",
|
|
444
|
+
"test/unit/integrations/helpers/nochex_helper_test.rb",
|
|
445
|
+
"test/unit/integrations/helpers/paypal_helper_test.rb",
|
|
446
|
+
"test/unit/integrations/helpers/quickpay_helper_test.rb",
|
|
447
|
+
"test/unit/integrations/helpers/two_checkout_helper_test.rb",
|
|
448
|
+
"test/unit/integrations/hi_trust_module_test.rb",
|
|
449
|
+
"test/unit/integrations/nochex_module_test.rb",
|
|
450
|
+
"test/unit/integrations/notifications/chronopay_notification_test.rb",
|
|
451
|
+
"test/unit/integrations/notifications/gestpay_notification_test.rb",
|
|
452
|
+
"test/unit/integrations/notifications/hi_trust_notification_test.rb",
|
|
453
|
+
"test/unit/integrations/notifications/nochex_notification_test.rb",
|
|
454
|
+
"test/unit/integrations/notifications/notification_test.rb",
|
|
455
|
+
"test/unit/integrations/notifications/paypal_notification_test.rb",
|
|
456
|
+
"test/unit/integrations/notifications/quickpay_notification_test.rb",
|
|
457
|
+
"test/unit/integrations/notifications/two_checkout_notification_test.rb",
|
|
458
|
+
"test/unit/integrations/paypal_module_test.rb",
|
|
459
|
+
"test/unit/integrations/quickpay_module_test.rb",
|
|
460
|
+
"test/unit/integrations/returns/chronopay_return_test.rb",
|
|
461
|
+
"test/unit/integrations/returns/gestpay_return_test.rb",
|
|
462
|
+
"test/unit/integrations/returns/hi_trust_return_test.rb",
|
|
463
|
+
"test/unit/integrations/returns/nochex_return_test.rb",
|
|
464
|
+
"test/unit/integrations/returns/paypal_return_test.rb",
|
|
465
|
+
"test/unit/integrations/returns/return_test.rb",
|
|
466
|
+
"test/unit/integrations/returns/two_checkout_return_test.rb",
|
|
467
|
+
"test/unit/integrations/two_checkout_module_test.rb",
|
|
468
|
+
"test/unit/post_data_test.rb",
|
|
469
|
+
"test/unit/posts_data_test.rb",
|
|
470
|
+
"test/unit/response_test.rb",
|
|
471
|
+
"test/unit/utils_test.rb",
|
|
472
|
+
"test/unit/validateable_test.rb"
|
|
473
|
+
]
|
|
474
|
+
|
|
475
|
+
if s.respond_to? :specification_version then
|
|
476
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
477
|
+
s.specification_version = 3
|
|
478
|
+
|
|
479
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
480
|
+
else
|
|
481
|
+
end
|
|
482
|
+
else
|
|
483
|
+
end
|
|
484
|
+
end
|
data/gem-public_cert.pem
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
|
2
|
+
MIIDNjCCAh6gAwIBAgIBADANBgkqhkiG9w0BAQUFADBBMRMwEQYDVQQDDApjb2R5
|
|
3
|
+
ZmF1c2VyMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/IsZAEZFgNj
|
|
4
|
+
b20wHhcNMDcwMjIyMTcyMTI3WhcNMDgwMjIyMTcyMTI3WjBBMRMwEQYDVQQDDApj
|
|
5
|
+
b2R5ZmF1c2VyMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/IsZAEZ
|
|
6
|
+
FgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6T4Iqt5iWvAlU
|
|
7
|
+
iXI6L8UO0URQhIC65X/gJ9hL/x4lwSl/ckVm/R/bPrJGmifT+YooFv824N3y/TIX
|
|
8
|
+
25o/lZtRj1TUZJK4OCb0aVzosQVxBHSe6rLmxO8cItNTMOM9wn3thaITFrTa1DOQ
|
|
9
|
+
O3wqEjvW2L6VMozVfK1MfjL9IGgy0rCnl+2g4Gh4jDDpkLfnMG5CWI6cTCf3C1ye
|
|
10
|
+
ytOpWgi0XpOEy8nQWcFmt/KCQ/kFfzBo4QxqJi54b80842EyvzWT9OB7Oew/CXZG
|
|
11
|
+
F2yIHtiYxonz6N09vvSzq4CvEuisoUFLKZnktndxMEBKwJU3XeSHAbuS7ix40OKO
|
|
12
|
+
WKuI54fHAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
|
|
13
|
+
BBR9QQpefI3oDCAxiqJW/3Gg6jI6qjANBgkqhkiG9w0BAQUFAAOCAQEAs0lX26O+
|
|
14
|
+
HpyMp7WL+SgZuM8k76AjfOHuKajl2GEn3S8pWYGpsa0xu07HtehJhKLiavrfUYeE
|
|
15
|
+
qlFtyYMUyOh6/1S2vfkH6VqjX7mWjoi7XKHW/99fkMS40B5SbN+ypAUst+6c5R84
|
|
16
|
+
w390mjtLHpdDE6WQYhS6bFvBN53vK6jG3DLyCJc0K9uMQ7gdHWoxq7RnG92ncQpT
|
|
17
|
+
ThpRA+fky5Xt2Q63YJDnJpkYAz79QIama1enSnd4jslKzSl89JS2luq/zioPe/Us
|
|
18
|
+
hbyalWR1+HrhgPoSPq7nk+s2FQUBJ9UZFK1lgMzho/4fZgzJwbu+cO8SNuaLS/bj
|
|
19
|
+
hPaSTyVU0yCSnw==
|
|
20
|
+
-----END CERTIFICATE-----
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
class GatewayGenerator < RubiGen::Base
|
|
2
|
+
LIB_DIR = "lib/active_merchant/billing/gateways/"
|
|
3
|
+
UNIT_TEST_DIR = "test/unit/gateways/"
|
|
4
|
+
REMOTE_TEST_DIR = "test/remote/gateways/"
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
default_options :author => nil
|
|
8
|
+
|
|
9
|
+
attr_reader :name
|
|
10
|
+
|
|
11
|
+
def initialize(runtime_args, runtime_options = {})
|
|
12
|
+
super
|
|
13
|
+
usage if args.length < 1
|
|
14
|
+
@name = args.shift
|
|
15
|
+
extract_options
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def class_name
|
|
19
|
+
@name.classify
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def manifest
|
|
23
|
+
record do |m|
|
|
24
|
+
|
|
25
|
+
m.directory LIB_DIR
|
|
26
|
+
m.directory UNIT_TEST_DIR
|
|
27
|
+
m.directory REMOTE_TEST_DIR
|
|
28
|
+
|
|
29
|
+
m.template 'gateway.rb', LIB_DIR + "#{name}.rb"
|
|
30
|
+
m.template 'gateway_test.rb', UNIT_TEST_DIR + "#{name}_test.rb"
|
|
31
|
+
m.template 'remote_gateway_test.rb', REMOTE_TEST_DIR + "remote_#{name}_test.rb"
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
protected
|
|
36
|
+
def banner
|
|
37
|
+
<<-EOS
|
|
38
|
+
Creates a ...
|
|
39
|
+
|
|
40
|
+
USAGE: #{$0} #{spec.name} name"
|
|
41
|
+
EOS
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def add_options!(opts)
|
|
45
|
+
# opts.separator ''
|
|
46
|
+
# opts.separator 'Options:'
|
|
47
|
+
# For each option below, place the default
|
|
48
|
+
# at the top of the file next to "default_options"
|
|
49
|
+
# opts.on("-a", "--author=\"Your Name\"", String,
|
|
50
|
+
# "Some comment about this option",
|
|
51
|
+
# "Default: none") { |options[:author]| }
|
|
52
|
+
# opts.on("-v", "--version", "Show the #{File.basename($0)} version number and quit.")
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
def extract_options
|
|
56
|
+
# for each option, extract it into a local variable (and create an "attr_reader :author" at the top)
|
|
57
|
+
# Templates can access these value via the attr_reader-generated methods, but not the
|
|
58
|
+
# raw instance variable value.
|
|
59
|
+
# @author = options[:author]
|
|
60
|
+
end
|
|
61
|
+
end
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
|
2
|
+
module Billing #:nodoc:
|
|
3
|
+
class <%= class_name %>Gateway < Gateway
|
|
4
|
+
TEST_URL = 'https://example.com/test'
|
|
5
|
+
LIVE_URL = 'https://example.com/live'
|
|
6
|
+
|
|
7
|
+
# The countries the gateway supports merchants from as 2 digit ISO country codes
|
|
8
|
+
self.supported_countries = ['US']
|
|
9
|
+
|
|
10
|
+
# The card types supported by the payment gateway
|
|
11
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
|
|
12
|
+
|
|
13
|
+
# The homepage URL of the gateway
|
|
14
|
+
self.homepage_url = 'http://www.example.net/'
|
|
15
|
+
|
|
16
|
+
# The name of the gateway
|
|
17
|
+
self.display_name = 'New Gateway'
|
|
18
|
+
|
|
19
|
+
def initialize(options = {})
|
|
20
|
+
#requires!(options, :login, :password)
|
|
21
|
+
@options = options
|
|
22
|
+
super
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def authorize(money, creditcard, options = {})
|
|
26
|
+
post = {}
|
|
27
|
+
add_invoice(post, options)
|
|
28
|
+
add_creditcard(post, creditcard)
|
|
29
|
+
add_address(post, creditcard, options)
|
|
30
|
+
add_customer_data(post, options)
|
|
31
|
+
|
|
32
|
+
commit('authonly', money, post)
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def purchase(money, creditcard, options = {})
|
|
36
|
+
post = {}
|
|
37
|
+
add_invoice(post, options)
|
|
38
|
+
add_creditcard(post, creditcard)
|
|
39
|
+
add_address(post, creditcard, options)
|
|
40
|
+
add_customer_data(post, options)
|
|
41
|
+
|
|
42
|
+
commit('sale', money, post)
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def capture(money, authorization, options = {})
|
|
46
|
+
commit('capture', money, post)
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
private
|
|
50
|
+
|
|
51
|
+
def add_customer_data(post, options)
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
def add_address(post, creditcard, options)
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
def add_invoice(post, options)
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
def add_creditcard(post, creditcard)
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
def parse(body)
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
def commit(action, money, parameters)
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
def message_from(response)
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def post_data(action, parameters = {})
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|