patmaddox-activemerchant 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +480 -0
- data/CONTRIBUTORS +126 -0
- data/MIT-LICENSE +20 -0
- data/README +136 -0
- data/Rakefile +153 -0
- data/gem-public_cert.pem +20 -0
- data/init.rb +3 -0
- data/lib/active_merchant.rb +66 -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.rb +18 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +657 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +743 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +233 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +101 -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/elavon.rb +134 -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/first_pay.rb +172 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +270 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +449 -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 +220 -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/ogone.rb +279 -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.rb +236 -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_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/paypal.rb +121 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +326 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -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/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.rb +146 -0
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +116 -0
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
- data/lib/active_merchant/billing/gateways/sage_pay.rb +308 -0
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -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 +452 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +265 -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 +189 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
- data/lib/active_merchant/billing/integrations.rb +29 -0
- data/lib/active_merchant/billing/integrations/action_view_helper.rb +79 -0
- data/lib/active_merchant/billing/integrations/bogus.rb +23 -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/chronopay.rb +23 -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/gestpay.rb +25 -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/helper.rb +93 -0
- data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -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/nochex.rb +88 -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/notification.rb +62 -0
- data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
- data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -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/quickpay.rb +17 -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/return.rb +35 -0
- data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -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/response.rb +32 -0
- data/lib/active_merchant/lib/connection.rb +170 -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/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 +355 -0
- data/test/remote/gateways/remote_authorize_net_cim_test.rb +460 -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_elavon_test.rb +66 -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_first_pay_test.rb +87 -0
- data/test/remote/gateways/remote_instapay_test.rb +61 -0
- data/test/remote/gateways/remote_jetpay_test.rb +103 -0
- data/test/remote/gateways/remote_linkpoint_test.rb +121 -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 +57 -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_ogone_test.rb +115 -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_paypal_express_test.rb +49 -0
- data/test/remote/gateways/remote_paypal_test.rb +191 -0
- data/test/remote/gateways/remote_plugnpay_test.rb +72 -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_pay_test.rb +219 -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_sallie_mae_test.rb +51 -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 +179 -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 +676 -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/elavon_test.rb +139 -0
- data/test/unit/gateways/eway_test.rb +118 -0
- data/test/unit/gateways/exact_test.rb +156 -0
- data/test/unit/gateways/first_pay_test.rb +125 -0
- data/test/unit/gateways/gateway_test.rb +48 -0
- data/test/unit/gateways/instapay_test.rb +102 -0
- data/test/unit/gateways/jetpay_test.rb +185 -0
- data/test/unit/gateways/linkpoint_test.rb +197 -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 +162 -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/ogone_test.rb +319 -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/paypal_express_test.rb +382 -0
- data/test/unit/gateways/paypal_test.rb +569 -0
- data/test/unit/gateways/plugnpay_test.rb +86 -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 +196 -0
- data/test/unit/gateways/sage_pay_test.rb +139 -0
- data/test/unit/gateways/sage_virtual_check_test.rb +71 -0
- data/test/unit/gateways/sallie_mae_test.rb +53 -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 +213 -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 +171 -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 +367 -0
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class ResponseTest < Test::Unit::TestCase
|
4
|
+
def test_response_success
|
5
|
+
assert Response.new(true, 'message', :param => 'value').success?
|
6
|
+
assert !Response.new(false, 'message', :param => 'value').success?
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_get_params
|
10
|
+
response = Response.new(true, 'message', :param => 'value')
|
11
|
+
|
12
|
+
assert_equal ['param'], response.params.keys
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_avs_result
|
16
|
+
response = Response.new(true, 'message', {}, :avs_result => { :code => 'A', :street_match => 'Y', :zip_match => 'N' })
|
17
|
+
avs_result = response.avs_result
|
18
|
+
assert_equal 'A', avs_result['code']
|
19
|
+
assert_equal AVSResult.messages['A'], avs_result['message']
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_cvv_result
|
23
|
+
response = Response.new(true, 'message', {}, :cvv_result => 'M')
|
24
|
+
cvv_result = response.cvv_result
|
25
|
+
assert_equal 'M', cvv_result['code']
|
26
|
+
assert_equal CVVResult.messages['M'], cvv_result['message']
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class Dood
|
4
|
+
include ActiveMerchant::Validateable
|
5
|
+
|
6
|
+
attr_accessor :name, :email, :country
|
7
|
+
|
8
|
+
def validate
|
9
|
+
errors.add "name", "cannot be empty" if name.blank?
|
10
|
+
errors.add "email", "cannot be empty" if email.blank?
|
11
|
+
errors.add_to_base "The country cannot be blank" if country.blank?
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
15
|
+
|
16
|
+
class ValidateableTest < Test::Unit::TestCase
|
17
|
+
include ActiveMerchant
|
18
|
+
|
19
|
+
def setup
|
20
|
+
@dood = Dood.new
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_validation
|
24
|
+
assert ! @dood.valid?
|
25
|
+
assert ! @dood.errors.empty?
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_assigns
|
29
|
+
@dood = Dood.new(:name => "tobi", :email => "tobi@neech.de", :country => 'DE')
|
30
|
+
|
31
|
+
assert_equal "tobi", @dood.name
|
32
|
+
assert_equal "tobi@neech.de", @dood.email
|
33
|
+
assert @dood.valid?
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_multiple_calls
|
37
|
+
@dood.name = "tobi"
|
38
|
+
assert !@dood.valid?
|
39
|
+
|
40
|
+
@dood.email = "tobi@neech.de"
|
41
|
+
assert !@dood.valid?
|
42
|
+
|
43
|
+
@dood.country = 'DE'
|
44
|
+
assert @dood.valid?
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_messages
|
48
|
+
@dood.valid?
|
49
|
+
assert_equal "cannot be empty", @dood.errors.on('name')
|
50
|
+
assert_equal "cannot be empty", @dood.errors.on('email')
|
51
|
+
assert_equal nil, @dood.errors.on('doesnt_exist')
|
52
|
+
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_full_messages
|
56
|
+
@dood.valid?
|
57
|
+
assert_equal ["Email cannot be empty", "Name cannot be empty", "The country cannot be blank"], @dood.errors.full_messages.sort
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
metadata
ADDED
@@ -0,0 +1,367 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: patmaddox-activemerchant
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.4.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tobias Luetke
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain:
|
11
|
+
- gem-public_cert.pem
|
12
|
+
date: 2010-01-05 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: activesupport
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 2.3.2
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: builder
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.0.0
|
34
|
+
version:
|
35
|
+
description:
|
36
|
+
email: tobi@leetsoft.com
|
37
|
+
executables: []
|
38
|
+
|
39
|
+
extensions: []
|
40
|
+
|
41
|
+
extra_rdoc_files: []
|
42
|
+
|
43
|
+
files:
|
44
|
+
- lib/active_merchant/billing/avs_result.rb
|
45
|
+
- lib/active_merchant/billing/base.rb
|
46
|
+
- lib/active_merchant/billing/check.rb
|
47
|
+
- lib/active_merchant/billing/credit_card.rb
|
48
|
+
- lib/active_merchant/billing/credit_card_formatting.rb
|
49
|
+
- lib/active_merchant/billing/credit_card_methods.rb
|
50
|
+
- lib/active_merchant/billing/cvv_result.rb
|
51
|
+
- lib/active_merchant/billing/expiry_date.rb
|
52
|
+
- lib/active_merchant/billing/gateway.rb
|
53
|
+
- lib/active_merchant/billing/gateways/authorize_net.rb
|
54
|
+
- lib/active_merchant/billing/gateways/authorize_net_cim.rb
|
55
|
+
- lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb
|
56
|
+
- lib/active_merchant/billing/gateways/beanstream.rb
|
57
|
+
- lib/active_merchant/billing/gateways/beanstream_interac.rb
|
58
|
+
- lib/active_merchant/billing/gateways/bogus.rb
|
59
|
+
- lib/active_merchant/billing/gateways/braintree.rb
|
60
|
+
- lib/active_merchant/billing/gateways/card_stream.rb
|
61
|
+
- lib/active_merchant/billing/gateways/cyber_source.rb
|
62
|
+
- lib/active_merchant/billing/gateways/data_cash.rb
|
63
|
+
- lib/active_merchant/billing/gateways/efsnet.rb
|
64
|
+
- lib/active_merchant/billing/gateways/elavon.rb
|
65
|
+
- lib/active_merchant/billing/gateways/eway.rb
|
66
|
+
- lib/active_merchant/billing/gateways/exact.rb
|
67
|
+
- lib/active_merchant/billing/gateways/first_pay.rb
|
68
|
+
- lib/active_merchant/billing/gateways/instapay.rb
|
69
|
+
- lib/active_merchant/billing/gateways/jetpay.rb
|
70
|
+
- lib/active_merchant/billing/gateways/linkpoint.rb
|
71
|
+
- lib/active_merchant/billing/gateways/merchant_e_solutions.rb
|
72
|
+
- lib/active_merchant/billing/gateways/merchant_ware.rb
|
73
|
+
- lib/active_merchant/billing/gateways/modern_payments.rb
|
74
|
+
- lib/active_merchant/billing/gateways/modern_payments_cim.rb
|
75
|
+
- lib/active_merchant/billing/gateways/moneris.rb
|
76
|
+
- lib/active_merchant/billing/gateways/net_registry.rb
|
77
|
+
- lib/active_merchant/billing/gateways/netbilling.rb
|
78
|
+
- lib/active_merchant/billing/gateways/ogone.rb
|
79
|
+
- lib/active_merchant/billing/gateways/pay_junction.rb
|
80
|
+
- lib/active_merchant/billing/gateways/pay_secure.rb
|
81
|
+
- lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb
|
82
|
+
- lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb
|
83
|
+
- lib/active_merchant/billing/gateways/payflow/payflow_response.rb
|
84
|
+
- lib/active_merchant/billing/gateways/payflow.rb
|
85
|
+
- lib/active_merchant/billing/gateways/payflow_express.rb
|
86
|
+
- lib/active_merchant/billing/gateways/payflow_express_uk.rb
|
87
|
+
- lib/active_merchant/billing/gateways/payflow_uk.rb
|
88
|
+
- lib/active_merchant/billing/gateways/payment_express.rb
|
89
|
+
- lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb
|
90
|
+
- lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb
|
91
|
+
- lib/active_merchant/billing/gateways/paypal.rb
|
92
|
+
- lib/active_merchant/billing/gateways/paypal_ca.rb
|
93
|
+
- lib/active_merchant/billing/gateways/paypal_express.rb
|
94
|
+
- lib/active_merchant/billing/gateways/paypal_express_common.rb
|
95
|
+
- lib/active_merchant/billing/gateways/plugnpay.rb
|
96
|
+
- lib/active_merchant/billing/gateways/psigate.rb
|
97
|
+
- lib/active_merchant/billing/gateways/psl_card.rb
|
98
|
+
- lib/active_merchant/billing/gateways/quickpay.rb
|
99
|
+
- lib/active_merchant/billing/gateways/realex.rb
|
100
|
+
- lib/active_merchant/billing/gateways/sage/sage_bankcard.rb
|
101
|
+
- lib/active_merchant/billing/gateways/sage/sage_core.rb
|
102
|
+
- lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb
|
103
|
+
- lib/active_merchant/billing/gateways/sage.rb
|
104
|
+
- lib/active_merchant/billing/gateways/sage_pay.rb
|
105
|
+
- lib/active_merchant/billing/gateways/sallie_mae.rb
|
106
|
+
- lib/active_merchant/billing/gateways/secure_pay.rb
|
107
|
+
- lib/active_merchant/billing/gateways/secure_pay_au.rb
|
108
|
+
- lib/active_merchant/billing/gateways/secure_pay_tech.rb
|
109
|
+
- lib/active_merchant/billing/gateways/skip_jack.rb
|
110
|
+
- lib/active_merchant/billing/gateways/smart_ps.rb
|
111
|
+
- lib/active_merchant/billing/gateways/trans_first.rb
|
112
|
+
- lib/active_merchant/billing/gateways/transax.rb
|
113
|
+
- lib/active_merchant/billing/gateways/trust_commerce.rb
|
114
|
+
- lib/active_merchant/billing/gateways/usa_epay.rb
|
115
|
+
- lib/active_merchant/billing/gateways/verifi.rb
|
116
|
+
- lib/active_merchant/billing/gateways/viaklix.rb
|
117
|
+
- lib/active_merchant/billing/gateways/wirecard.rb
|
118
|
+
- lib/active_merchant/billing/gateways.rb
|
119
|
+
- lib/active_merchant/billing/integrations/action_view_helper.rb
|
120
|
+
- lib/active_merchant/billing/integrations/bogus/helper.rb
|
121
|
+
- lib/active_merchant/billing/integrations/bogus/notification.rb
|
122
|
+
- lib/active_merchant/billing/integrations/bogus/return.rb
|
123
|
+
- lib/active_merchant/billing/integrations/bogus.rb
|
124
|
+
- lib/active_merchant/billing/integrations/chronopay/helper.rb
|
125
|
+
- lib/active_merchant/billing/integrations/chronopay/notification.rb
|
126
|
+
- lib/active_merchant/billing/integrations/chronopay/return.rb
|
127
|
+
- lib/active_merchant/billing/integrations/chronopay.rb
|
128
|
+
- lib/active_merchant/billing/integrations/gestpay/common.rb
|
129
|
+
- lib/active_merchant/billing/integrations/gestpay/helper.rb
|
130
|
+
- lib/active_merchant/billing/integrations/gestpay/notification.rb
|
131
|
+
- lib/active_merchant/billing/integrations/gestpay/return.rb
|
132
|
+
- lib/active_merchant/billing/integrations/gestpay.rb
|
133
|
+
- lib/active_merchant/billing/integrations/helper.rb
|
134
|
+
- lib/active_merchant/billing/integrations/hi_trust/helper.rb
|
135
|
+
- lib/active_merchant/billing/integrations/hi_trust/notification.rb
|
136
|
+
- lib/active_merchant/billing/integrations/hi_trust/return.rb
|
137
|
+
- lib/active_merchant/billing/integrations/hi_trust.rb
|
138
|
+
- lib/active_merchant/billing/integrations/nochex/helper.rb
|
139
|
+
- lib/active_merchant/billing/integrations/nochex/notification.rb
|
140
|
+
- lib/active_merchant/billing/integrations/nochex/return.rb
|
141
|
+
- lib/active_merchant/billing/integrations/nochex.rb
|
142
|
+
- lib/active_merchant/billing/integrations/notification.rb
|
143
|
+
- lib/active_merchant/billing/integrations/paypal/helper.rb
|
144
|
+
- lib/active_merchant/billing/integrations/paypal/notification.rb
|
145
|
+
- lib/active_merchant/billing/integrations/paypal/return.rb
|
146
|
+
- lib/active_merchant/billing/integrations/paypal.rb
|
147
|
+
- lib/active_merchant/billing/integrations/quickpay/helper.rb
|
148
|
+
- lib/active_merchant/billing/integrations/quickpay/notification.rb
|
149
|
+
- lib/active_merchant/billing/integrations/quickpay.rb
|
150
|
+
- lib/active_merchant/billing/integrations/return.rb
|
151
|
+
- lib/active_merchant/billing/integrations/two_checkout/helper.rb
|
152
|
+
- lib/active_merchant/billing/integrations/two_checkout/notification.rb
|
153
|
+
- lib/active_merchant/billing/integrations/two_checkout/return.rb
|
154
|
+
- lib/active_merchant/billing/integrations/two_checkout.rb
|
155
|
+
- lib/active_merchant/billing/integrations.rb
|
156
|
+
- lib/active_merchant/billing/response.rb
|
157
|
+
- lib/active_merchant/lib/connection.rb
|
158
|
+
- lib/active_merchant/lib/country.rb
|
159
|
+
- lib/active_merchant/lib/error.rb
|
160
|
+
- lib/active_merchant/lib/post_data.rb
|
161
|
+
- lib/active_merchant/lib/posts_data.rb
|
162
|
+
- lib/active_merchant/lib/requires_parameters.rb
|
163
|
+
- lib/active_merchant/lib/utils.rb
|
164
|
+
- lib/active_merchant/lib/validateable.rb
|
165
|
+
- lib/active_merchant.rb
|
166
|
+
- lib/certs/cacert.pem
|
167
|
+
- lib/support/gateway_support.rb
|
168
|
+
- test/fixtures.yml
|
169
|
+
- test/remote/gateways/remote_authorize_net_cim_test.rb
|
170
|
+
- test/remote/gateways/remote_authorize_net_test.rb
|
171
|
+
- test/remote/gateways/remote_beanstream_interac_test.rb
|
172
|
+
- test/remote/gateways/remote_beanstream_test.rb
|
173
|
+
- test/remote/gateways/remote_braintree_test.rb
|
174
|
+
- test/remote/gateways/remote_card_stream_test.rb
|
175
|
+
- test/remote/gateways/remote_cyber_source_test.rb
|
176
|
+
- test/remote/gateways/remote_data_cash_test.rb
|
177
|
+
- test/remote/gateways/remote_efsnet_test.rb
|
178
|
+
- test/remote/gateways/remote_elavon_test.rb
|
179
|
+
- test/remote/gateways/remote_eway_test.rb
|
180
|
+
- test/remote/gateways/remote_exact_test.rb
|
181
|
+
- test/remote/gateways/remote_first_pay_test.rb
|
182
|
+
- test/remote/gateways/remote_instapay_test.rb
|
183
|
+
- test/remote/gateways/remote_jetpay_test.rb
|
184
|
+
- test/remote/gateways/remote_linkpoint_test.rb
|
185
|
+
- test/remote/gateways/remote_merchant_e_solutions_test.rb
|
186
|
+
- test/remote/gateways/remote_merchant_ware_test.rb
|
187
|
+
- test/remote/gateways/remote_modern_payments_cim_test.rb
|
188
|
+
- test/remote/gateways/remote_modern_payments_test.rb
|
189
|
+
- test/remote/gateways/remote_moneris_test.rb
|
190
|
+
- test/remote/gateways/remote_net_registry_test.rb
|
191
|
+
- test/remote/gateways/remote_netbilling_test.rb
|
192
|
+
- test/remote/gateways/remote_ogone_test.rb
|
193
|
+
- test/remote/gateways/remote_pay_junction_test.rb
|
194
|
+
- test/remote/gateways/remote_pay_secure_test.rb
|
195
|
+
- test/remote/gateways/remote_payflow_express_test.rb
|
196
|
+
- test/remote/gateways/remote_payflow_test.rb
|
197
|
+
- test/remote/gateways/remote_payflow_uk_test.rb
|
198
|
+
- test/remote/gateways/remote_payment_express_test.rb
|
199
|
+
- test/remote/gateways/remote_paypal_express_test.rb
|
200
|
+
- test/remote/gateways/remote_paypal_test.rb
|
201
|
+
- test/remote/gateways/remote_plugnpay_test.rb
|
202
|
+
- test/remote/gateways/remote_psigate_test.rb
|
203
|
+
- test/remote/gateways/remote_psl_card_test.rb
|
204
|
+
- test/remote/gateways/remote_quickpay_test.rb
|
205
|
+
- test/remote/gateways/remote_realex_test.rb
|
206
|
+
- test/remote/gateways/remote_sage_bankcard_test.rb
|
207
|
+
- test/remote/gateways/remote_sage_pay_test.rb
|
208
|
+
- test/remote/gateways/remote_sage_test.rb
|
209
|
+
- test/remote/gateways/remote_sage_virtual_check_test.rb
|
210
|
+
- test/remote/gateways/remote_sallie_mae_test.rb
|
211
|
+
- test/remote/gateways/remote_secure_pay_au_test.rb
|
212
|
+
- test/remote/gateways/remote_secure_pay_tech_test.rb
|
213
|
+
- test/remote/gateways/remote_secure_pay_test.rb
|
214
|
+
- test/remote/gateways/remote_skipjack_test.rb
|
215
|
+
- test/remote/gateways/remote_trans_first_test.rb
|
216
|
+
- test/remote/gateways/remote_transax_test.rb
|
217
|
+
- test/remote/gateways/remote_trust_commerce_test.rb
|
218
|
+
- test/remote/gateways/remote_usa_epay_test.rb
|
219
|
+
- test/remote/gateways/remote_verifi_test.rb
|
220
|
+
- test/remote/gateways/remote_viaklix_test.rb
|
221
|
+
- test/remote/gateways/remote_wirecard_test.rb
|
222
|
+
- test/remote/integrations/remote_gestpay_integration_test.rb
|
223
|
+
- test/remote/integrations/remote_paypal_integration_test.rb
|
224
|
+
- test/test_helper.rb
|
225
|
+
- test/unit/avs_result_test.rb
|
226
|
+
- test/unit/base_test.rb
|
227
|
+
- test/unit/check_test.rb
|
228
|
+
- test/unit/connection_test.rb
|
229
|
+
- test/unit/country_code_test.rb
|
230
|
+
- test/unit/country_test.rb
|
231
|
+
- test/unit/credit_card_formatting_test.rb
|
232
|
+
- test/unit/credit_card_methods_test.rb
|
233
|
+
- test/unit/credit_card_test.rb
|
234
|
+
- test/unit/cvv_result_test.rb
|
235
|
+
- test/unit/expiry_date_test.rb
|
236
|
+
- test/unit/gateways/authorize_net_cim_test.rb
|
237
|
+
- test/unit/gateways/authorize_net_test.rb
|
238
|
+
- test/unit/gateways/beanstream_interac_test.rb
|
239
|
+
- test/unit/gateways/beanstream_test.rb
|
240
|
+
- test/unit/gateways/bogus_test.rb
|
241
|
+
- test/unit/gateways/braintree_test.rb
|
242
|
+
- test/unit/gateways/card_stream_test.rb
|
243
|
+
- test/unit/gateways/cyber_source_test.rb
|
244
|
+
- test/unit/gateways/data_cash_test.rb
|
245
|
+
- test/unit/gateways/efsnet_test.rb
|
246
|
+
- test/unit/gateways/elavon_test.rb
|
247
|
+
- test/unit/gateways/eway_test.rb
|
248
|
+
- test/unit/gateways/exact_test.rb
|
249
|
+
- test/unit/gateways/first_pay_test.rb
|
250
|
+
- test/unit/gateways/gateway_test.rb
|
251
|
+
- test/unit/gateways/instapay_test.rb
|
252
|
+
- test/unit/gateways/jetpay_test.rb
|
253
|
+
- test/unit/gateways/linkpoint_test.rb
|
254
|
+
- test/unit/gateways/merchant_e_solutions_test.rb
|
255
|
+
- test/unit/gateways/merchant_ware_test.rb
|
256
|
+
- test/unit/gateways/modern_payments_cim_test.rb
|
257
|
+
- test/unit/gateways/moneris_test.rb
|
258
|
+
- test/unit/gateways/net_registry_test.rb
|
259
|
+
- test/unit/gateways/netbilling_test.rb
|
260
|
+
- test/unit/gateways/ogone_test.rb
|
261
|
+
- test/unit/gateways/pay_junction_test.rb
|
262
|
+
- test/unit/gateways/pay_secure_test.rb
|
263
|
+
- test/unit/gateways/payflow_express_test.rb
|
264
|
+
- test/unit/gateways/payflow_express_uk_test.rb
|
265
|
+
- test/unit/gateways/payflow_test.rb
|
266
|
+
- test/unit/gateways/payflow_uk_test.rb
|
267
|
+
- test/unit/gateways/payment_express_test.rb
|
268
|
+
- test/unit/gateways/paypal_express_test.rb
|
269
|
+
- test/unit/gateways/paypal_test.rb
|
270
|
+
- test/unit/gateways/plugnpay_test.rb
|
271
|
+
- test/unit/gateways/psigate_test.rb
|
272
|
+
- test/unit/gateways/psl_card_test.rb
|
273
|
+
- test/unit/gateways/quickpay_test.rb
|
274
|
+
- test/unit/gateways/realex_test.rb
|
275
|
+
- test/unit/gateways/sage_bankcard_test.rb
|
276
|
+
- test/unit/gateways/sage_pay_test.rb
|
277
|
+
- test/unit/gateways/sage_virtual_check_test.rb
|
278
|
+
- test/unit/gateways/sallie_mae_test.rb
|
279
|
+
- test/unit/gateways/secure_pay_au_test.rb
|
280
|
+
- test/unit/gateways/secure_pay_tech_test.rb
|
281
|
+
- test/unit/gateways/secure_pay_test.rb
|
282
|
+
- test/unit/gateways/skip_jack_test.rb
|
283
|
+
- test/unit/gateways/trans_first_test.rb
|
284
|
+
- test/unit/gateways/trust_commerce_test.rb
|
285
|
+
- test/unit/gateways/usa_epay_test.rb
|
286
|
+
- test/unit/gateways/verifi_test.rb
|
287
|
+
- test/unit/gateways/viaklix_test.rb
|
288
|
+
- test/unit/gateways/wirecard_test.rb
|
289
|
+
- test/unit/generators/test_gateway_generator.rb
|
290
|
+
- test/unit/generators/test_generator_helper.rb
|
291
|
+
- test/unit/generators/test_integration_generator.rb
|
292
|
+
- test/unit/integrations/action_view_helper_test.rb
|
293
|
+
- test/unit/integrations/bogus_module_test.rb
|
294
|
+
- test/unit/integrations/chronopay_module_test.rb
|
295
|
+
- test/unit/integrations/gestpay_module_test.rb
|
296
|
+
- test/unit/integrations/helpers/bogus_helper_test.rb
|
297
|
+
- test/unit/integrations/helpers/chronopay_helper_test.rb
|
298
|
+
- test/unit/integrations/helpers/gestpay_helper_test.rb
|
299
|
+
- test/unit/integrations/helpers/hi_trust_helper_test.rb
|
300
|
+
- test/unit/integrations/helpers/nochex_helper_test.rb
|
301
|
+
- test/unit/integrations/helpers/paypal_helper_test.rb
|
302
|
+
- test/unit/integrations/helpers/quickpay_helper_test.rb
|
303
|
+
- test/unit/integrations/helpers/two_checkout_helper_test.rb
|
304
|
+
- test/unit/integrations/hi_trust_module_test.rb
|
305
|
+
- test/unit/integrations/nochex_module_test.rb
|
306
|
+
- test/unit/integrations/notifications/chronopay_notification_test.rb
|
307
|
+
- test/unit/integrations/notifications/gestpay_notification_test.rb
|
308
|
+
- test/unit/integrations/notifications/hi_trust_notification_test.rb
|
309
|
+
- test/unit/integrations/notifications/nochex_notification_test.rb
|
310
|
+
- test/unit/integrations/notifications/notification_test.rb
|
311
|
+
- test/unit/integrations/notifications/paypal_notification_test.rb
|
312
|
+
- test/unit/integrations/notifications/quickpay_notification_test.rb
|
313
|
+
- test/unit/integrations/notifications/two_checkout_notification_test.rb
|
314
|
+
- test/unit/integrations/paypal_module_test.rb
|
315
|
+
- test/unit/integrations/quickpay_module_test.rb
|
316
|
+
- test/unit/integrations/returns/chronopay_return_test.rb
|
317
|
+
- test/unit/integrations/returns/gestpay_return_test.rb
|
318
|
+
- test/unit/integrations/returns/hi_trust_return_test.rb
|
319
|
+
- test/unit/integrations/returns/nochex_return_test.rb
|
320
|
+
- test/unit/integrations/returns/paypal_return_test.rb
|
321
|
+
- test/unit/integrations/returns/return_test.rb
|
322
|
+
- test/unit/integrations/returns/two_checkout_return_test.rb
|
323
|
+
- test/unit/integrations/two_checkout_module_test.rb
|
324
|
+
- test/unit/post_data_test.rb
|
325
|
+
- test/unit/posts_data_test.rb
|
326
|
+
- test/unit/response_test.rb
|
327
|
+
- test/unit/utils_test.rb
|
328
|
+
- test/unit/validateable_test.rb
|
329
|
+
- script/destroy
|
330
|
+
- script/generate
|
331
|
+
- CHANGELOG
|
332
|
+
- CONTRIBUTORS
|
333
|
+
- MIT-LICENSE
|
334
|
+
- README
|
335
|
+
- Rakefile
|
336
|
+
- gem-public_cert.pem
|
337
|
+
- init.rb
|
338
|
+
has_rdoc: true
|
339
|
+
homepage: http://activemerchant.org/
|
340
|
+
licenses: []
|
341
|
+
|
342
|
+
post_install_message:
|
343
|
+
rdoc_options: []
|
344
|
+
|
345
|
+
require_paths:
|
346
|
+
- lib
|
347
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
348
|
+
requirements:
|
349
|
+
- - ">="
|
350
|
+
- !ruby/object:Gem::Version
|
351
|
+
version: "0"
|
352
|
+
version:
|
353
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
354
|
+
requirements:
|
355
|
+
- - ">="
|
356
|
+
- !ruby/object:Gem::Version
|
357
|
+
version: "0"
|
358
|
+
version:
|
359
|
+
requirements: []
|
360
|
+
|
361
|
+
rubyforge_project: activemerchant
|
362
|
+
rubygems_version: 1.3.5
|
363
|
+
signing_key:
|
364
|
+
specification_version: 3
|
365
|
+
summary: Framework and tools for dealing with credit card transactions.
|
366
|
+
test_files: []
|
367
|
+
|