activemerchant 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data.tar.gz.sig +0 -0
- data/CHANGELOG +226 -0
- data/CONTRIBUTERS +52 -0
- data/README +34 -24
- data/Rakefile +152 -0
- data/gem-public_cert.pem +20 -0
- data/init.rb +3 -0
- data/lib/active_merchant.rb +3 -1
- data/lib/active_merchant/billing/credit_card.rb +21 -17
- data/lib/active_merchant/billing/credit_card_methods.rb +17 -19
- data/lib/active_merchant/billing/gateway.rb +160 -44
- data/lib/active_merchant/billing/gateways.rb +2 -15
- data/lib/active_merchant/billing/gateways/authorize_net.rb +21 -21
- data/lib/active_merchant/billing/gateways/bogus.rb +6 -6
- data/lib/active_merchant/billing/gateways/brain_tree.rb +191 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +207 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +402 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +41 -97
- data/lib/active_merchant/billing/gateways/efsnet.rb +256 -0
- data/lib/active_merchant/billing/gateways/eway.rb +77 -29
- data/lib/active_merchant/billing/gateways/exact.rb +230 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +6 -33
- data/lib/active_merchant/billing/gateways/moneris.rb +155 -125
- data/lib/active_merchant/billing/gateways/net_registry.rb +257 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +407 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +163 -25
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +56 -38
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +10 -1
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +9 -0
- data/lib/active_merchant/billing/gateways/payflow_express.rb +36 -11
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +6 -0
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +7 -3
- data/lib/active_merchant/billing/gateways/payment_express.rb +261 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +18 -4
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +31 -15
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +8 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +33 -8
- data/lib/active_merchant/billing/gateways/plugnpay.rb +300 -0
- data/lib/active_merchant/billing/gateways/protx.rb +285 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +13 -12
- data/lib/active_merchant/billing/gateways/psl_card.rb +297 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +197 -0
- data/lib/active_merchant/billing/gateways/realex.rb +212 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +136 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +43 -20
- data/lib/active_merchant/billing/gateways/usa_epay.rb +6 -5
- data/lib/active_merchant/billing/gateways/verifi.rb +235 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +171 -0
- data/lib/active_merchant/billing/integrations/gestpay/helper.rb +0 -2
- data/lib/active_merchant/billing/integrations/helper.rb +8 -1
- data/lib/active_merchant/billing/integrations/nochex.rb +62 -1
- data/lib/active_merchant/billing/integrations/nochex/notification.rb +9 -16
- data/lib/active_merchant/billing/integrations/notification.rb +1 -1
- data/lib/active_merchant/billing/integrations/paypal/helper.rb +59 -46
- data/lib/active_merchant/billing/integrations/paypal/notification.rb +14 -47
- 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 +23 -5
- data/lib/active_merchant/lib/requires_parameters.rb +2 -2
- data/lib/active_merchant/lib/validateable.rb +1 -1
- data/lib/support/gateway_support.rb +45 -0
- data/lib/tasks/cia.rb +1 -1
- data/script/generate +14 -0
- data/script/generator/base.rb +45 -0
- data/script/generator/generator.rb +24 -0
- data/script/generator/generators/gateway/gateway_generator.rb +14 -0
- data/script/generator/generators/gateway/templates/gateway.rb +73 -0
- data/script/generator/generators/gateway/templates/gateway_test.rb +41 -0
- data/script/generator/generators/gateway/templates/remote_gateway_test.rb +56 -0
- data/script/generator/generators/integration/integration_generator.rb +25 -0
- data/script/generator/generators/integration/templates/helper.rb +34 -0
- data/script/generator/generators/integration/templates/helper_test.rb +54 -0
- data/script/generator/generators/integration/templates/integration.rb +18 -0
- data/script/generator/generators/integration/templates/module_test.rb +9 -0
- data/script/generator/generators/integration/templates/notification.rb +100 -0
- data/script/generator/generators/integration/templates/notification_test.rb +41 -0
- data/script/generator/manifest.rb +20 -0
- data/test/extra/binding_of_caller.rb +80 -0
- data/test/extra/breakpoint.rb +547 -0
- data/test/fixtures.yml +251 -0
- data/test/remote_tests/remote_authorize_net_test.rb +113 -0
- data/test/remote_tests/remote_brain_tree_test.rb +78 -0
- data/test/remote_tests/remote_card_stream_test.rb +160 -0
- data/test/remote_tests/remote_cyber_source_test.rb +130 -0
- data/test/remote_tests/remote_data_cash_test.rb +155 -0
- data/test/remote_tests/remote_efsnet_test.rb +93 -0
- data/test/remote_tests/remote_eway_test.rb +71 -0
- data/test/remote_tests/remote_exact_test.rb +59 -0
- data/test/remote_tests/remote_gestpay_integration_test.rb +37 -0
- data/test/remote_tests/remote_linkpoint_test.rb +144 -0
- data/test/remote_tests/remote_moneris_test.rb +110 -0
- data/test/remote_tests/remote_net_registry_test.rb +120 -0
- data/test/remote_tests/remote_pay_junction_test.rb +162 -0
- data/test/remote_tests/remote_payflow_express_test.rb +50 -0
- data/test/remote_tests/remote_payflow_test.rb +241 -0
- data/test/remote_tests/remote_payflow_uk_test.rb +172 -0
- data/test/remote_tests/remote_payment_express_test.rb +136 -0
- data/test/remote_tests/remote_paypal_express_test.rb +49 -0
- data/test/remote_tests/remote_paypal_integration_test.rb +14 -0
- data/test/remote_tests/remote_paypal_test.rb +163 -0
- data/test/remote_tests/remote_plugnpay_test.rb +70 -0
- data/test/remote_tests/remote_protx_test.rb +184 -0
- data/test/remote_tests/remote_psigate_test.rb +87 -0
- data/test/remote_tests/remote_psl_card_test.rb +105 -0
- data/test/remote_tests/remote_quickpay_test.rb +182 -0
- data/test/remote_tests/remote_realex_test.rb +227 -0
- data/test/remote_tests/remote_secure_pay_test.rb +36 -0
- data/test/remote_tests/remote_trans_first_test.rb +37 -0
- data/test/remote_tests/remote_trust_commerce_test.rb +136 -0
- data/test/remote_tests/remote_usa_epay_test.rb +57 -0
- data/test/remote_tests/remote_verifi_test.rb +107 -0
- data/test/remote_tests/remote_viaklix_test.rb +53 -0
- data/test/test_helper.rb +132 -0
- data/test/unit/base_test.rb +61 -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 +24 -0
- data/test/unit/credit_card_methods_test.rb +37 -0
- data/test/unit/credit_card_test.rb +365 -0
- data/test/unit/gateways/authorize_net_test.rb +140 -0
- data/test/unit/gateways/bogus_test.rb +43 -0
- data/test/unit/gateways/brain_tree_test.rb +77 -0
- data/test/unit/gateways/card_stream_test.rb +37 -0
- data/test/unit/gateways/cyber_source_test.rb +151 -0
- data/test/unit/gateways/data_cash_test.rb +23 -0
- data/test/unit/gateways/efsnet_test.rb +70 -0
- data/test/unit/gateways/eway_test.rb +105 -0
- data/test/unit/gateways/exact_test.rb +118 -0
- data/test/unit/gateways/gateway_test.rb +24 -0
- data/test/unit/gateways/linkpoint_test.rb +165 -0
- data/test/unit/gateways/moneris_test.rb +167 -0
- data/test/unit/gateways/net_registry_test.rb +478 -0
- data/test/unit/gateways/pay_junction_test.rb +61 -0
- data/test/unit/gateways/payflow_express_test.rb +165 -0
- data/test/unit/gateways/payflow_express_uk_test.rb +14 -0
- data/test/unit/gateways/payflow_test.rb +230 -0
- data/test/unit/gateways/payflow_uk_test.rb +68 -0
- data/test/unit/gateways/payment_express_test.rb +215 -0
- data/test/unit/gateways/paypal_express_test.rb +222 -0
- data/test/unit/gateways/paypal_test.rb +241 -0
- data/test/unit/gateways/plugnpay_test.rb +79 -0
- data/test/unit/gateways/protx_test.rb +110 -0
- data/test/unit/gateways/psigate_test.rb +110 -0
- data/test/unit/gateways/psl_card_test.rb +51 -0
- data/test/unit/gateways/quickpay_test.rb +125 -0
- data/test/unit/gateways/realex_test.rb +150 -0
- data/test/unit/gateways/secure_pay_test.rb +78 -0
- data/test/unit/gateways/trans_first_test.rb +125 -0
- data/test/unit/gateways/trust_commerce_test.rb +57 -0
- data/test/unit/gateways/usa_epay_test.rb +117 -0
- data/test/unit/gateways/verifi_test.rb +91 -0
- data/test/unit/gateways/viaklix_test.rb +72 -0
- data/test/unit/integrations/action_view_helper_test.rb +54 -0
- data/test/unit/integrations/bogus_module_test.rb +16 -0
- data/test/unit/integrations/chronopay_module_test.rb +9 -0
- data/test/unit/integrations/gestpay_module_test.rb +10 -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/nochex_helper_test.rb +53 -0
- data/test/unit/integrations/helpers/paypal_helper_test.rb +162 -0
- data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
- data/test/unit/integrations/nochex_module_test.rb +9 -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/nochex_notification_test.rb +51 -0
- data/test/unit/integrations/notifications/notification_test.rb +41 -0
- data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
- data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
- data/test/unit/integrations/paypal_module_test.rb +24 -0
- data/test/unit/integrations/two_checkout_module_test.rb +9 -0
- data/test/unit/post_data_test.rb +55 -0
- data/test/unit/response_test.rb +14 -0
- data/test/unit/validateable_test.rb +56 -0
- metadata +160 -7
- metadata.gz.sig +0 -0
- data/lib/active_merchant/billing/gateways/payflow/f73e89fd.0 +0 -17
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../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
|
+
end
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../test_helper'
|
|
2
|
+
|
|
3
|
+
class Dood
|
|
4
|
+
include ActiveMerchant::Validateable
|
|
5
|
+
|
|
6
|
+
attr_accessor :name, :email
|
|
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
|
+
end
|
|
12
|
+
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
class ValidateableTest < Test::Unit::TestCase
|
|
16
|
+
include ActiveMerchant
|
|
17
|
+
|
|
18
|
+
def setup
|
|
19
|
+
@dood = Dood.new
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_validation
|
|
23
|
+
assert ! @dood.valid?
|
|
24
|
+
assert ! @dood.errors.empty?
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def test_assings
|
|
28
|
+
@dood = Dood.new(:name => "tobi", :email => "tobi@neech.de")
|
|
29
|
+
|
|
30
|
+
assert_equal "tobi", @dood.name
|
|
31
|
+
assert_equal "tobi@neech.de", @dood.email
|
|
32
|
+
assert @dood.valid?
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def test_multiple_calls
|
|
36
|
+
@dood.name = "tobi"
|
|
37
|
+
assert ! @dood.valid?
|
|
38
|
+
@dood.email = "tobi@neech.de"
|
|
39
|
+
assert @dood.valid?
|
|
40
|
+
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def test_messages
|
|
44
|
+
@dood.valid?
|
|
45
|
+
assert_equal "cannot be empty", @dood.errors.on('name')
|
|
46
|
+
assert_equal "cannot be empty", @dood.errors.on('email')
|
|
47
|
+
assert_equal nil, @dood.errors.on('doesnt_exist')
|
|
48
|
+
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
def test_full_messages
|
|
52
|
+
@dood.valid?
|
|
53
|
+
assert_equal ["Email cannot be empty", "Name cannot be empty"], @dood.errors.full_messages.sort
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
end
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.9.
|
|
2
|
+
rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: activemerchant
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 1.
|
|
7
|
-
date: 2007-
|
|
6
|
+
version: 1.2.0
|
|
7
|
+
date: 2007-09-20 00:00:00 -04:00
|
|
8
8
|
summary: Framework and tools for dealing with credit card transactions.
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
@@ -51,12 +51,10 @@ post_install_message:
|
|
|
51
51
|
authors:
|
|
52
52
|
- Tobias Luetke
|
|
53
53
|
files:
|
|
54
|
-
- README
|
|
55
|
-
- MIT-LICENSE
|
|
56
|
-
- CHANGELOG
|
|
57
54
|
- lib/active_merchant
|
|
58
55
|
- lib/active_merchant.rb
|
|
59
56
|
- lib/certs
|
|
57
|
+
- lib/support
|
|
60
58
|
- lib/tasks
|
|
61
59
|
- lib/active_merchant/billing
|
|
62
60
|
- lib/active_merchant/lib
|
|
@@ -72,24 +70,41 @@ files:
|
|
|
72
70
|
- lib/active_merchant/billing/response.rb
|
|
73
71
|
- lib/active_merchant/billing/gateways/authorize_net.rb
|
|
74
72
|
- lib/active_merchant/billing/gateways/bogus.rb
|
|
73
|
+
- lib/active_merchant/billing/gateways/brain_tree.rb
|
|
74
|
+
- lib/active_merchant/billing/gateways/card_stream.rb
|
|
75
|
+
- lib/active_merchant/billing/gateways/cyber_source.rb
|
|
75
76
|
- lib/active_merchant/billing/gateways/data_cash.rb
|
|
77
|
+
- lib/active_merchant/billing/gateways/efsnet.rb
|
|
76
78
|
- lib/active_merchant/billing/gateways/eway.rb
|
|
79
|
+
- lib/active_merchant/billing/gateways/exact.rb
|
|
77
80
|
- lib/active_merchant/billing/gateways/linkpoint.rb
|
|
78
81
|
- lib/active_merchant/billing/gateways/moneris.rb
|
|
82
|
+
- lib/active_merchant/billing/gateways/net_registry.rb
|
|
83
|
+
- lib/active_merchant/billing/gateways/pay_junction.rb
|
|
79
84
|
- lib/active_merchant/billing/gateways/payflow
|
|
80
85
|
- lib/active_merchant/billing/gateways/payflow.rb
|
|
81
86
|
- lib/active_merchant/billing/gateways/payflow_express.rb
|
|
82
87
|
- lib/active_merchant/billing/gateways/payflow_express_uk.rb
|
|
83
88
|
- lib/active_merchant/billing/gateways/payflow_uk.rb
|
|
89
|
+
- lib/active_merchant/billing/gateways/payment_express.rb
|
|
84
90
|
- lib/active_merchant/billing/gateways/paypal
|
|
85
91
|
- lib/active_merchant/billing/gateways/paypal.rb
|
|
86
92
|
- lib/active_merchant/billing/gateways/paypal_express.rb
|
|
93
|
+
- lib/active_merchant/billing/gateways/plugnpay.rb
|
|
94
|
+
- lib/active_merchant/billing/gateways/protx.rb
|
|
87
95
|
- lib/active_merchant/billing/gateways/psigate.rb
|
|
96
|
+
- lib/active_merchant/billing/gateways/psl_card.rb
|
|
97
|
+
- lib/active_merchant/billing/gateways/quickpay.rb
|
|
98
|
+
- lib/active_merchant/billing/gateways/realex.rb
|
|
99
|
+
- lib/active_merchant/billing/gateways/secure_pay.rb
|
|
100
|
+
- lib/active_merchant/billing/gateways/trans_first.rb
|
|
88
101
|
- lib/active_merchant/billing/gateways/trust_commerce.rb
|
|
89
102
|
- lib/active_merchant/billing/gateways/usa_epay.rb
|
|
90
|
-
- lib/active_merchant/billing/gateways/
|
|
103
|
+
- lib/active_merchant/billing/gateways/verifi.rb
|
|
104
|
+
- lib/active_merchant/billing/gateways/viaklix.rb
|
|
91
105
|
- lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb
|
|
92
106
|
- lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb
|
|
107
|
+
- lib/active_merchant/billing/gateways/payflow/payflow_response.rb
|
|
93
108
|
- lib/active_merchant/billing/gateways/paypal/api_cert_chain.crt
|
|
94
109
|
- lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb
|
|
95
110
|
- lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb
|
|
@@ -122,11 +137,149 @@ files:
|
|
|
122
137
|
- lib/active_merchant/billing/integrations/two_checkout/helper.rb
|
|
123
138
|
- lib/active_merchant/billing/integrations/two_checkout/notification.rb
|
|
124
139
|
- lib/active_merchant/lib/country.rb
|
|
140
|
+
- lib/active_merchant/lib/error.rb
|
|
141
|
+
- lib/active_merchant/lib/post_data.rb
|
|
125
142
|
- lib/active_merchant/lib/posts_data.rb
|
|
126
143
|
- lib/active_merchant/lib/requires_parameters.rb
|
|
127
144
|
- lib/active_merchant/lib/validateable.rb
|
|
128
145
|
- lib/certs/cacert.pem
|
|
146
|
+
- lib/support/gateway_support.rb
|
|
129
147
|
- lib/tasks/cia.rb
|
|
148
|
+
- test/extra
|
|
149
|
+
- test/fixtures.yml
|
|
150
|
+
- test/remote_tests
|
|
151
|
+
- test/test_helper.rb
|
|
152
|
+
- test/unit
|
|
153
|
+
- test/extra/binding_of_caller.rb
|
|
154
|
+
- test/extra/breakpoint.rb
|
|
155
|
+
- test/remote_tests/remote_authorize_net_test.rb
|
|
156
|
+
- test/remote_tests/remote_brain_tree_test.rb
|
|
157
|
+
- test/remote_tests/remote_card_stream_test.rb
|
|
158
|
+
- test/remote_tests/remote_cyber_source_test.rb
|
|
159
|
+
- test/remote_tests/remote_data_cash_test.rb
|
|
160
|
+
- test/remote_tests/remote_efsnet_test.rb
|
|
161
|
+
- test/remote_tests/remote_eway_test.rb
|
|
162
|
+
- test/remote_tests/remote_exact_test.rb
|
|
163
|
+
- test/remote_tests/remote_gestpay_integration_test.rb
|
|
164
|
+
- test/remote_tests/remote_linkpoint_test.rb
|
|
165
|
+
- test/remote_tests/remote_moneris_test.rb
|
|
166
|
+
- test/remote_tests/remote_net_registry_test.rb
|
|
167
|
+
- test/remote_tests/remote_pay_junction_test.rb
|
|
168
|
+
- test/remote_tests/remote_payflow_express_test.rb
|
|
169
|
+
- test/remote_tests/remote_payflow_test.rb
|
|
170
|
+
- test/remote_tests/remote_payflow_uk_test.rb
|
|
171
|
+
- test/remote_tests/remote_payment_express_test.rb
|
|
172
|
+
- test/remote_tests/remote_paypal_express_test.rb
|
|
173
|
+
- test/remote_tests/remote_paypal_integration_test.rb
|
|
174
|
+
- test/remote_tests/remote_paypal_test.rb
|
|
175
|
+
- test/remote_tests/remote_plugnpay_test.rb
|
|
176
|
+
- test/remote_tests/remote_protx_test.rb
|
|
177
|
+
- test/remote_tests/remote_psigate_test.rb
|
|
178
|
+
- test/remote_tests/remote_psl_card_test.rb
|
|
179
|
+
- test/remote_tests/remote_quickpay_test.rb
|
|
180
|
+
- test/remote_tests/remote_realex_test.rb
|
|
181
|
+
- test/remote_tests/remote_secure_pay_test.rb
|
|
182
|
+
- test/remote_tests/remote_trans_first_test.rb
|
|
183
|
+
- test/remote_tests/remote_trust_commerce_test.rb
|
|
184
|
+
- test/remote_tests/remote_usa_epay_test.rb
|
|
185
|
+
- test/remote_tests/remote_verifi_test.rb
|
|
186
|
+
- test/remote_tests/remote_viaklix_test.rb
|
|
187
|
+
- test/unit/base_test.rb
|
|
188
|
+
- test/unit/country_code_test.rb
|
|
189
|
+
- test/unit/country_test.rb
|
|
190
|
+
- test/unit/credit_card_formatting_test.rb
|
|
191
|
+
- test/unit/credit_card_methods_test.rb
|
|
192
|
+
- test/unit/credit_card_test.rb
|
|
193
|
+
- test/unit/gateways
|
|
194
|
+
- test/unit/integrations
|
|
195
|
+
- test/unit/post_data_test.rb
|
|
196
|
+
- test/unit/response_test.rb
|
|
197
|
+
- test/unit/validateable_test.rb
|
|
198
|
+
- test/unit/gateways/authorize_net_test.rb
|
|
199
|
+
- test/unit/gateways/bogus_test.rb
|
|
200
|
+
- test/unit/gateways/brain_tree_test.rb
|
|
201
|
+
- test/unit/gateways/card_stream_test.rb
|
|
202
|
+
- test/unit/gateways/cyber_source_test.rb
|
|
203
|
+
- test/unit/gateways/data_cash_test.rb
|
|
204
|
+
- test/unit/gateways/efsnet_test.rb
|
|
205
|
+
- test/unit/gateways/eway_test.rb
|
|
206
|
+
- test/unit/gateways/exact_test.rb
|
|
207
|
+
- test/unit/gateways/gateway_test.rb
|
|
208
|
+
- test/unit/gateways/linkpoint_test.rb
|
|
209
|
+
- test/unit/gateways/moneris_test.rb
|
|
210
|
+
- test/unit/gateways/net_registry_test.rb
|
|
211
|
+
- test/unit/gateways/pay_junction_test.rb
|
|
212
|
+
- test/unit/gateways/payflow_express_test.rb
|
|
213
|
+
- test/unit/gateways/payflow_express_uk_test.rb
|
|
214
|
+
- test/unit/gateways/payflow_test.rb
|
|
215
|
+
- test/unit/gateways/payflow_uk_test.rb
|
|
216
|
+
- test/unit/gateways/payment_express_test.rb
|
|
217
|
+
- test/unit/gateways/paypal_express_test.rb
|
|
218
|
+
- test/unit/gateways/paypal_test.rb
|
|
219
|
+
- test/unit/gateways/plugnpay_test.rb
|
|
220
|
+
- test/unit/gateways/protx_test.rb
|
|
221
|
+
- test/unit/gateways/psigate_test.rb
|
|
222
|
+
- test/unit/gateways/psl_card_test.rb
|
|
223
|
+
- test/unit/gateways/quickpay_test.rb
|
|
224
|
+
- test/unit/gateways/realex_test.rb
|
|
225
|
+
- test/unit/gateways/secure_pay_test.rb
|
|
226
|
+
- test/unit/gateways/trans_first_test.rb
|
|
227
|
+
- test/unit/gateways/trust_commerce_test.rb
|
|
228
|
+
- test/unit/gateways/usa_epay_test.rb
|
|
229
|
+
- test/unit/gateways/verifi_test.rb
|
|
230
|
+
- test/unit/gateways/viaklix_test.rb
|
|
231
|
+
- test/unit/integrations/action_view_helper_test.rb
|
|
232
|
+
- test/unit/integrations/bogus_module_test.rb
|
|
233
|
+
- test/unit/integrations/chronopay_module_test.rb
|
|
234
|
+
- test/unit/integrations/gestpay_module_test.rb
|
|
235
|
+
- test/unit/integrations/helpers
|
|
236
|
+
- test/unit/integrations/nochex_module_test.rb
|
|
237
|
+
- test/unit/integrations/notifications
|
|
238
|
+
- test/unit/integrations/paypal_module_test.rb
|
|
239
|
+
- test/unit/integrations/two_checkout_module_test.rb
|
|
240
|
+
- test/unit/integrations/helpers/bogus_helper_test.rb
|
|
241
|
+
- test/unit/integrations/helpers/chronopay_helper_test.rb
|
|
242
|
+
- test/unit/integrations/helpers/gestpay_helper_test.rb
|
|
243
|
+
- test/unit/integrations/helpers/nochex_helper_test.rb
|
|
244
|
+
- test/unit/integrations/helpers/paypal_helper_test.rb
|
|
245
|
+
- test/unit/integrations/helpers/two_checkout_helper_test.rb
|
|
246
|
+
- test/unit/integrations/notifications/chronopay_notification_test.rb
|
|
247
|
+
- test/unit/integrations/notifications/gestpay_notification_test.rb
|
|
248
|
+
- test/unit/integrations/notifications/nochex_notification_test.rb
|
|
249
|
+
- test/unit/integrations/notifications/notification_test.rb
|
|
250
|
+
- test/unit/integrations/notifications/paypal_notification_test.rb
|
|
251
|
+
- test/unit/integrations/notifications/two_checkout_notification_test.rb
|
|
252
|
+
- script/generate
|
|
253
|
+
- script/generator
|
|
254
|
+
- script/generator/base.rb
|
|
255
|
+
- script/generator/generator.rb
|
|
256
|
+
- script/generator/generators
|
|
257
|
+
- script/generator/manifest.rb
|
|
258
|
+
- script/generator/generators/gateway
|
|
259
|
+
- script/generator/generators/integration
|
|
260
|
+
- script/generator/generators/gateway/gateway_generator.rb
|
|
261
|
+
- script/generator/generators/gateway/templates
|
|
262
|
+
- script/generator/generators/gateway/templates/gateway.rb
|
|
263
|
+
- script/generator/generators/gateway/templates/gateway_test.rb
|
|
264
|
+
- script/generator/generators/gateway/templates/remote_gateway_test.rb
|
|
265
|
+
- script/generator/generators/integration/integration_generator.rb
|
|
266
|
+
- script/generator/generators/integration/templates
|
|
267
|
+
- script/generator/generators/integration/templates/helper.rb
|
|
268
|
+
- script/generator/generators/integration/templates/helper_test.rb
|
|
269
|
+
- script/generator/generators/integration/templates/integration.rb
|
|
270
|
+
- script/generator/generators/integration/templates/module_test.rb
|
|
271
|
+
- script/generator/generators/integration/templates/notification.rb
|
|
272
|
+
- script/generator/generators/integration/templates/notification_test.rb
|
|
273
|
+
- CHANGELOG
|
|
274
|
+
- CONTRIBUTERS
|
|
275
|
+
- gem-public_cert.pem
|
|
276
|
+
- init.rb
|
|
277
|
+
- lib
|
|
278
|
+
- MIT-LICENSE
|
|
279
|
+
- Rakefile
|
|
280
|
+
- README
|
|
281
|
+
- script
|
|
282
|
+
- test
|
|
130
283
|
test_files: []
|
|
131
284
|
|
|
132
285
|
rdoc_options: []
|
metadata.gz.sig
CHANGED
|
Binary file
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
subject=/C=US/O=RSA Data Security, Inc./OU=Secure Server Certification Authority
|
|
2
|
-
notBefore=Nov 9 00:00:00 1994 GMT
|
|
3
|
-
notAfter=Jan 7 23:59:59 2010 GMT
|
|
4
|
-
-----BEGIN CERTIFICATE-----
|
|
5
|
-
MIICNDCCAaECEAKtZn5ORf5eV288mBle3cAwDQYJKoZIhvcNAQECBQAwXzELMAkG
|
|
6
|
-
A1UEBhMCVVMxIDAeBgNVBAoTF1JTQSBEYXRhIFNlY3VyaXR5LCBJbmMuMS4wLAYD
|
|
7
|
-
VQQLEyVTZWN1cmUgU2VydmVyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk0
|
|
8
|
-
MTEwOTAwMDAwMFoXDTEwMDEwNzIzNTk1OVowXzELMAkGA1UEBhMCVVMxIDAeBgNV
|
|
9
|
-
BAoTF1JTQSBEYXRhIFNlY3VyaXR5LCBJbmMuMS4wLAYDVQQLEyVTZWN1cmUgU2Vy
|
|
10
|
-
dmVyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGbMA0GCSqGSIb3DQEBAQUAA4GJ
|
|
11
|
-
ADCBhQJ+AJLOesGugz5aqomDV6wlAXYMra6OLDfO6zV4ZFQD5YRAUcm/jwjiioII
|
|
12
|
-
0haGN1XpsSECrXZogZoFokvJSyVmIlZsiAeP94FZbYQHZXATcXY+m3dM41CJVphI
|
|
13
|
-
uR2nKRoTLkoRWZweFdVJVCxzOmmCsZc5nG1wZ0jl3S3WyB57AgMBAAEwDQYJKoZI
|
|
14
|
-
hvcNAQECBQADfgBl3X7hsuyw4jrg7HFGmhkRuNPHoLQDQCYCPgmc4RKz0Vr2N6W3
|
|
15
|
-
YQO2WxZpO8ZECAyIUwxrl0nHPjXcbLm7qt9cuzovk2C2qUtN8iD3zV9/ZHuO3ABc
|
|
16
|
-
1/p3yjkWWW8O6tO1g39NTUJWdrTJXwT4OPjr0l91X817/OWOgHz8UA==
|
|
17
|
-
-----END CERTIFICATE-----
|