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.
Files changed (178) hide show
  1. data.tar.gz.sig +0 -0
  2. data/CHANGELOG +226 -0
  3. data/CONTRIBUTERS +52 -0
  4. data/README +34 -24
  5. data/Rakefile +152 -0
  6. data/gem-public_cert.pem +20 -0
  7. data/init.rb +3 -0
  8. data/lib/active_merchant.rb +3 -1
  9. data/lib/active_merchant/billing/credit_card.rb +21 -17
  10. data/lib/active_merchant/billing/credit_card_methods.rb +17 -19
  11. data/lib/active_merchant/billing/gateway.rb +160 -44
  12. data/lib/active_merchant/billing/gateways.rb +2 -15
  13. data/lib/active_merchant/billing/gateways/authorize_net.rb +21 -21
  14. data/lib/active_merchant/billing/gateways/bogus.rb +6 -6
  15. data/lib/active_merchant/billing/gateways/brain_tree.rb +191 -0
  16. data/lib/active_merchant/billing/gateways/card_stream.rb +207 -0
  17. data/lib/active_merchant/billing/gateways/cyber_source.rb +402 -0
  18. data/lib/active_merchant/billing/gateways/data_cash.rb +41 -97
  19. data/lib/active_merchant/billing/gateways/efsnet.rb +256 -0
  20. data/lib/active_merchant/billing/gateways/eway.rb +77 -29
  21. data/lib/active_merchant/billing/gateways/exact.rb +230 -0
  22. data/lib/active_merchant/billing/gateways/linkpoint.rb +6 -33
  23. data/lib/active_merchant/billing/gateways/moneris.rb +155 -125
  24. data/lib/active_merchant/billing/gateways/net_registry.rb +257 -0
  25. data/lib/active_merchant/billing/gateways/pay_junction.rb +407 -0
  26. data/lib/active_merchant/billing/gateways/payflow.rb +163 -25
  27. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +56 -38
  28. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +10 -1
  29. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +9 -0
  30. data/lib/active_merchant/billing/gateways/payflow_express.rb +36 -11
  31. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +6 -0
  32. data/lib/active_merchant/billing/gateways/payflow_uk.rb +7 -3
  33. data/lib/active_merchant/billing/gateways/payment_express.rb +261 -0
  34. data/lib/active_merchant/billing/gateways/paypal.rb +18 -4
  35. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +31 -15
  36. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +8 -0
  37. data/lib/active_merchant/billing/gateways/paypal_express.rb +33 -8
  38. data/lib/active_merchant/billing/gateways/plugnpay.rb +300 -0
  39. data/lib/active_merchant/billing/gateways/protx.rb +285 -0
  40. data/lib/active_merchant/billing/gateways/psigate.rb +13 -12
  41. data/lib/active_merchant/billing/gateways/psl_card.rb +297 -0
  42. data/lib/active_merchant/billing/gateways/quickpay.rb +197 -0
  43. data/lib/active_merchant/billing/gateways/realex.rb +212 -0
  44. data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  45. data/lib/active_merchant/billing/gateways/trans_first.rb +136 -0
  46. data/lib/active_merchant/billing/gateways/trust_commerce.rb +43 -20
  47. data/lib/active_merchant/billing/gateways/usa_epay.rb +6 -5
  48. data/lib/active_merchant/billing/gateways/verifi.rb +235 -0
  49. data/lib/active_merchant/billing/gateways/viaklix.rb +171 -0
  50. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +0 -2
  51. data/lib/active_merchant/billing/integrations/helper.rb +8 -1
  52. data/lib/active_merchant/billing/integrations/nochex.rb +62 -1
  53. data/lib/active_merchant/billing/integrations/nochex/notification.rb +9 -16
  54. data/lib/active_merchant/billing/integrations/notification.rb +1 -1
  55. data/lib/active_merchant/billing/integrations/paypal/helper.rb +59 -46
  56. data/lib/active_merchant/billing/integrations/paypal/notification.rb +14 -47
  57. data/lib/active_merchant/lib/error.rb +4 -0
  58. data/lib/active_merchant/lib/post_data.rb +22 -0
  59. data/lib/active_merchant/lib/posts_data.rb +23 -5
  60. data/lib/active_merchant/lib/requires_parameters.rb +2 -2
  61. data/lib/active_merchant/lib/validateable.rb +1 -1
  62. data/lib/support/gateway_support.rb +45 -0
  63. data/lib/tasks/cia.rb +1 -1
  64. data/script/generate +14 -0
  65. data/script/generator/base.rb +45 -0
  66. data/script/generator/generator.rb +24 -0
  67. data/script/generator/generators/gateway/gateway_generator.rb +14 -0
  68. data/script/generator/generators/gateway/templates/gateway.rb +73 -0
  69. data/script/generator/generators/gateway/templates/gateway_test.rb +41 -0
  70. data/script/generator/generators/gateway/templates/remote_gateway_test.rb +56 -0
  71. data/script/generator/generators/integration/integration_generator.rb +25 -0
  72. data/script/generator/generators/integration/templates/helper.rb +34 -0
  73. data/script/generator/generators/integration/templates/helper_test.rb +54 -0
  74. data/script/generator/generators/integration/templates/integration.rb +18 -0
  75. data/script/generator/generators/integration/templates/module_test.rb +9 -0
  76. data/script/generator/generators/integration/templates/notification.rb +100 -0
  77. data/script/generator/generators/integration/templates/notification_test.rb +41 -0
  78. data/script/generator/manifest.rb +20 -0
  79. data/test/extra/binding_of_caller.rb +80 -0
  80. data/test/extra/breakpoint.rb +547 -0
  81. data/test/fixtures.yml +251 -0
  82. data/test/remote_tests/remote_authorize_net_test.rb +113 -0
  83. data/test/remote_tests/remote_brain_tree_test.rb +78 -0
  84. data/test/remote_tests/remote_card_stream_test.rb +160 -0
  85. data/test/remote_tests/remote_cyber_source_test.rb +130 -0
  86. data/test/remote_tests/remote_data_cash_test.rb +155 -0
  87. data/test/remote_tests/remote_efsnet_test.rb +93 -0
  88. data/test/remote_tests/remote_eway_test.rb +71 -0
  89. data/test/remote_tests/remote_exact_test.rb +59 -0
  90. data/test/remote_tests/remote_gestpay_integration_test.rb +37 -0
  91. data/test/remote_tests/remote_linkpoint_test.rb +144 -0
  92. data/test/remote_tests/remote_moneris_test.rb +110 -0
  93. data/test/remote_tests/remote_net_registry_test.rb +120 -0
  94. data/test/remote_tests/remote_pay_junction_test.rb +162 -0
  95. data/test/remote_tests/remote_payflow_express_test.rb +50 -0
  96. data/test/remote_tests/remote_payflow_test.rb +241 -0
  97. data/test/remote_tests/remote_payflow_uk_test.rb +172 -0
  98. data/test/remote_tests/remote_payment_express_test.rb +136 -0
  99. data/test/remote_tests/remote_paypal_express_test.rb +49 -0
  100. data/test/remote_tests/remote_paypal_integration_test.rb +14 -0
  101. data/test/remote_tests/remote_paypal_test.rb +163 -0
  102. data/test/remote_tests/remote_plugnpay_test.rb +70 -0
  103. data/test/remote_tests/remote_protx_test.rb +184 -0
  104. data/test/remote_tests/remote_psigate_test.rb +87 -0
  105. data/test/remote_tests/remote_psl_card_test.rb +105 -0
  106. data/test/remote_tests/remote_quickpay_test.rb +182 -0
  107. data/test/remote_tests/remote_realex_test.rb +227 -0
  108. data/test/remote_tests/remote_secure_pay_test.rb +36 -0
  109. data/test/remote_tests/remote_trans_first_test.rb +37 -0
  110. data/test/remote_tests/remote_trust_commerce_test.rb +136 -0
  111. data/test/remote_tests/remote_usa_epay_test.rb +57 -0
  112. data/test/remote_tests/remote_verifi_test.rb +107 -0
  113. data/test/remote_tests/remote_viaklix_test.rb +53 -0
  114. data/test/test_helper.rb +132 -0
  115. data/test/unit/base_test.rb +61 -0
  116. data/test/unit/country_code_test.rb +33 -0
  117. data/test/unit/country_test.rb +64 -0
  118. data/test/unit/credit_card_formatting_test.rb +24 -0
  119. data/test/unit/credit_card_methods_test.rb +37 -0
  120. data/test/unit/credit_card_test.rb +365 -0
  121. data/test/unit/gateways/authorize_net_test.rb +140 -0
  122. data/test/unit/gateways/bogus_test.rb +43 -0
  123. data/test/unit/gateways/brain_tree_test.rb +77 -0
  124. data/test/unit/gateways/card_stream_test.rb +37 -0
  125. data/test/unit/gateways/cyber_source_test.rb +151 -0
  126. data/test/unit/gateways/data_cash_test.rb +23 -0
  127. data/test/unit/gateways/efsnet_test.rb +70 -0
  128. data/test/unit/gateways/eway_test.rb +105 -0
  129. data/test/unit/gateways/exact_test.rb +118 -0
  130. data/test/unit/gateways/gateway_test.rb +24 -0
  131. data/test/unit/gateways/linkpoint_test.rb +165 -0
  132. data/test/unit/gateways/moneris_test.rb +167 -0
  133. data/test/unit/gateways/net_registry_test.rb +478 -0
  134. data/test/unit/gateways/pay_junction_test.rb +61 -0
  135. data/test/unit/gateways/payflow_express_test.rb +165 -0
  136. data/test/unit/gateways/payflow_express_uk_test.rb +14 -0
  137. data/test/unit/gateways/payflow_test.rb +230 -0
  138. data/test/unit/gateways/payflow_uk_test.rb +68 -0
  139. data/test/unit/gateways/payment_express_test.rb +215 -0
  140. data/test/unit/gateways/paypal_express_test.rb +222 -0
  141. data/test/unit/gateways/paypal_test.rb +241 -0
  142. data/test/unit/gateways/plugnpay_test.rb +79 -0
  143. data/test/unit/gateways/protx_test.rb +110 -0
  144. data/test/unit/gateways/psigate_test.rb +110 -0
  145. data/test/unit/gateways/psl_card_test.rb +51 -0
  146. data/test/unit/gateways/quickpay_test.rb +125 -0
  147. data/test/unit/gateways/realex_test.rb +150 -0
  148. data/test/unit/gateways/secure_pay_test.rb +78 -0
  149. data/test/unit/gateways/trans_first_test.rb +125 -0
  150. data/test/unit/gateways/trust_commerce_test.rb +57 -0
  151. data/test/unit/gateways/usa_epay_test.rb +117 -0
  152. data/test/unit/gateways/verifi_test.rb +91 -0
  153. data/test/unit/gateways/viaklix_test.rb +72 -0
  154. data/test/unit/integrations/action_view_helper_test.rb +54 -0
  155. data/test/unit/integrations/bogus_module_test.rb +16 -0
  156. data/test/unit/integrations/chronopay_module_test.rb +9 -0
  157. data/test/unit/integrations/gestpay_module_test.rb +10 -0
  158. data/test/unit/integrations/helpers/bogus_helper_test.rb +28 -0
  159. data/test/unit/integrations/helpers/chronopay_helper_test.rb +67 -0
  160. data/test/unit/integrations/helpers/gestpay_helper_test.rb +100 -0
  161. data/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
  162. data/test/unit/integrations/helpers/paypal_helper_test.rb +162 -0
  163. data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
  164. data/test/unit/integrations/nochex_module_test.rb +9 -0
  165. data/test/unit/integrations/notifications/chronopay_notification_test.rb +66 -0
  166. data/test/unit/integrations/notifications/gestpay_notification_test.rb +60 -0
  167. data/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
  168. data/test/unit/integrations/notifications/notification_test.rb +41 -0
  169. data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
  170. data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
  171. data/test/unit/integrations/paypal_module_test.rb +24 -0
  172. data/test/unit/integrations/two_checkout_module_test.rb +9 -0
  173. data/test/unit/post_data_test.rb +55 -0
  174. data/test/unit/response_test.rb +14 -0
  175. data/test/unit/validateable_test.rb +56 -0
  176. metadata +160 -7
  177. metadata.gz.sig +0 -0
  178. 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.0
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.1.0
7
- date: 2007-03-10 00:00:00 -05:00
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/payflow/f73e89fd.0
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-----