projectdx_activemerchant 1.7.1.20100817.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (140) hide show
  1. data/CHANGELOG +530 -0
  2. data/CONTRIBUTORS +142 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.rdoc +136 -0
  5. data/gem-public_cert.pem +20 -0
  6. data/lib/active_merchant/billing/avs_result.rb +98 -0
  7. data/lib/active_merchant/billing/base.rb +57 -0
  8. data/lib/active_merchant/billing/check.rb +68 -0
  9. data/lib/active_merchant/billing/credit_card.rb +159 -0
  10. data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  11. data/lib/active_merchant/billing/credit_card_methods.rb +125 -0
  12. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  13. data/lib/active_merchant/billing/expiry_date.rb +34 -0
  14. data/lib/active_merchant/billing/gateway.rb +163 -0
  15. data/lib/active_merchant/billing/gateways/authorize_net.rb +654 -0
  16. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +736 -0
  17. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +244 -0
  18. data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
  19. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
  20. data/lib/active_merchant/billing/gateways/bogus.rb +102 -0
  21. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +9 -0
  22. data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
  23. data/lib/active_merchant/billing/gateways/braintree_blue.rb +210 -0
  24. data/lib/active_merchant/billing/gateways/braintree_orange.rb +17 -0
  25. data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
  26. data/lib/active_merchant/billing/gateways/convenience_pay.rb +191 -0
  27. data/lib/active_merchant/billing/gateways/cyber_source.rb +406 -0
  28. data/lib/active_merchant/billing/gateways/data_cash.rb +593 -0
  29. data/lib/active_merchant/billing/gateways/efsnet.rb +229 -0
  30. data/lib/active_merchant/billing/gateways/elavon.rb +134 -0
  31. data/lib/active_merchant/billing/gateways/eway.rb +277 -0
  32. data/lib/active_merchant/billing/gateways/exact.rb +222 -0
  33. data/lib/active_merchant/billing/gateways/first_pay.rb +172 -0
  34. data/lib/active_merchant/billing/gateways/garanti.rb +222 -0
  35. data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
  36. data/lib/active_merchant/billing/gateways/jetpay.rb +270 -0
  37. data/lib/active_merchant/billing/gateways/linkpoint.rb +449 -0
  38. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +154 -0
  39. data/lib/active_merchant/billing/gateways/merchant_ware.rb +283 -0
  40. data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
  41. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +220 -0
  42. data/lib/active_merchant/billing/gateways/moneris.rb +205 -0
  43. data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
  44. data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
  45. data/lib/active_merchant/billing/gateways/ogone.rb +279 -0
  46. data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
  47. data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  48. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -0
  49. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  50. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  51. data/lib/active_merchant/billing/gateways/payflow.rb +236 -0
  52. data/lib/active_merchant/billing/gateways/payflow_express.rb +138 -0
  53. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  54. data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  55. data/lib/active_merchant/billing/gateways/payment_express.rb +230 -0
  56. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +326 -0
  57. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
  58. data/lib/active_merchant/billing/gateways/paypal.rb +121 -0
  59. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  60. data/lib/active_merchant/billing/gateways/paypal_express.rb +135 -0
  61. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +20 -0
  62. data/lib/active_merchant/billing/gateways/plugnpay.rb +292 -0
  63. data/lib/active_merchant/billing/gateways/psigate.rb +214 -0
  64. data/lib/active_merchant/billing/gateways/psl_card.rb +304 -0
  65. data/lib/active_merchant/billing/gateways/quickpay.rb +213 -0
  66. data/lib/active_merchant/billing/gateways/realex.rb +200 -0
  67. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
  68. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +116 -0
  69. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
  70. data/lib/active_merchant/billing/gateways/sage.rb +146 -0
  71. data/lib/active_merchant/billing/gateways/sage_pay.rb +309 -0
  72. data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
  73. data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  74. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +157 -0
  75. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  76. data/lib/active_merchant/billing/gateways/skip_jack.rb +453 -0
  77. data/lib/active_merchant/billing/gateways/smart_ps.rb +265 -0
  78. data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
  79. data/lib/active_merchant/billing/gateways/transax.rb +25 -0
  80. data/lib/active_merchant/billing/gateways/trust_commerce.rb +418 -0
  81. data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
  82. data/lib/active_merchant/billing/gateways/verifi.rb +228 -0
  83. data/lib/active_merchant/billing/gateways/viaklix.rb +189 -0
  84. data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
  85. data/lib/active_merchant/billing/gateways.rb +18 -0
  86. data/lib/active_merchant/billing/integrations/action_view_helper.rb +79 -0
  87. data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  88. data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  89. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  90. data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
  91. data/lib/active_merchant/billing/integrations/chronopay/helper.rb +120 -0
  92. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +158 -0
  93. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  94. data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
  95. data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  96. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  97. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +85 -0
  98. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  99. data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
  100. data/lib/active_merchant/billing/integrations/helper.rb +93 -0
  101. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  102. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  103. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  104. data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
  105. data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  106. data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  107. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  108. data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
  109. data/lib/active_merchant/billing/integrations/notification.rb +62 -0
  110. data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
  111. data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
  112. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  113. data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
  114. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +72 -0
  115. data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
  116. data/lib/active_merchant/billing/integrations/quickpay.rb +17 -0
  117. data/lib/active_merchant/billing/integrations/return.rb +35 -0
  118. data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
  119. data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
  120. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  121. data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
  122. data/lib/active_merchant/billing/integrations.rb +29 -0
  123. data/lib/active_merchant/billing/response.rb +32 -0
  124. data/lib/active_merchant/billing.rb +9 -0
  125. data/lib/active_merchant/common/connection.rb +172 -0
  126. data/lib/active_merchant/common/country.rb +319 -0
  127. data/lib/active_merchant/common/error.rb +26 -0
  128. data/lib/active_merchant/common/post_data.rb +24 -0
  129. data/lib/active_merchant/common/posts_data.rb +47 -0
  130. data/lib/active_merchant/common/requires_parameters.rb +16 -0
  131. data/lib/active_merchant/common/utils.rb +18 -0
  132. data/lib/active_merchant/common/validateable.rb +76 -0
  133. data/lib/active_merchant/common.rb +14 -0
  134. data/lib/active_merchant/version.rb +3 -0
  135. data/lib/active_merchant.rb +47 -0
  136. data/lib/activemerchant.rb +1 -0
  137. data/lib/certs/cacert.pem +7815 -0
  138. data/lib/support/gateway_support.rb +58 -0
  139. data/lib/support/outbound_hosts.rb +25 -0
  140. metadata +254 -0
data/CHANGELOG ADDED
@@ -0,0 +1,530 @@
1
+ = ActiveMerchant CHANGELOG
2
+
3
+ == Version 1.7.1 (July 28, 2010)
4
+
5
+ * Pull in only the necessary components of Active Support. Enables use of ActiveMerchant with Rails 3 [railsjedi]
6
+
7
+ == Version 1.7.0 (July 9, 2010)
8
+
9
+ * Add support for new Braintree Blue Gateway (using the braintree gem) [Braintree]
10
+
11
+ == Version 1.6.0 (July 6, 2010)
12
+
13
+ * Add a task rake gateways:hosts to get a list of all outbound hosts and ports [cody]
14
+ * Fix test failure in chronopay helper in Ruby 1.9.1 [cody]
15
+ * Fix timezone issue in credit card test. [cody]
16
+ * Fix failing unit test for Garanti gateway [cody]
17
+ * Fix failing CyberSource remote test [Patrick Joyce]
18
+ * Support for Garanti Sanal Pos: Turkish bank and billing gateway [Selem Delul]
19
+ * Add deprecation note for Money objects to Bogus gateway [Soleone]
20
+ * Updated test URL for Merchant eSolutions and added valid remote test credentials [Soleone]
21
+ * Add new error class for SSL certificate problems in connection class [Soleone]
22
+ * Update valid_month and valid_expiry_year to coerce string arguments to integers [cody]
23
+ * Add support for displaying credit cards with PayPal Express. Use the :allow_guest_checkout => true option when setting up the transaction [Edward Ocampo-Gooding]
24
+ * Use card_brand method for checking for checks in Sage and Beanstream [cody]
25
+ * Add JCB and Diners Club to LinkPoint [Soleone]
26
+
27
+ == Version 1.5.1 (February 14, 2010)
28
+
29
+ * Cleanup Rakefile, add gemspec and prepare for 1.5.1 release [cody]
30
+ * Update copyright dates [cody]
31
+ * Work around SkipJack bug by reversing the order of the query params [Soleone]
32
+ * Fix uppercase character in autoload of 2Checkout's Notification class [Edward Ocampo-Gooding]
33
+ * Detect language used in Chronopay integration based on billing address country [Soleone]
34
+ * Better handle international addresses in BeanstreamGateway [Soleone]
35
+
36
+ == Version 1.5.0 (February 2, 2010)
37
+
38
+ * Fix Gestpay notification to avoid Ruby 1.9 warnings [cody]
39
+ * Fix Chronopay notification time parsing for Ruby 1.9 [Joe Van Dyk]
40
+ * Set default currency of Braintree to USD [cody]
41
+ * Fix QuickPay helper for Ruby 1.9 compat [cody]
42
+ * Use String#each_line instead of collect in PaySecureGateway for Ruby 1.9 compat [cody]
43
+ * Use String#each_line instead of to_a in SagePayGateway for Ruby 1.9 compat [cody]
44
+ * Don't return an array when finding the country code. Fixes issue with Ruby 1.9 [cody]
45
+ * Fix custom assertions for Ruby 1.9 [cody]
46
+ * Deprecate Money objects [cody]
47
+ * Update JCB rejex to catch all valid PANs [pjhyett]
48
+ * Remove old TransaXGateway constant [cody]
49
+ * Remove old ProtxGateway constant [cody]
50
+ * Remove old BrainTree constant [cody]
51
+ * Remove AuthorizedNet constant [cody]
52
+ * SecurePay changed their delimeter from % to ,. Update gateway to handle changes [Soleone]
53
+ * Fix documentation typo in base.rb [mig-hub]
54
+ * Add capture test to Linkpoint [Dusty Doris]
55
+ * Fix bug in Linkpoint with ternary operator and Ruby 1.9.1 [Dusty Doris]
56
+ * Add currency and processor options to Braintree gateway [cbillen]
57
+ * Unify API to always look for billing_address/address hash inside of options [stopdropandrew]
58
+ * Fix bug with Modern Payments Gateway where failure authorizations appeared to be successful [cody]
59
+ * Fix Modern Payments Gateway [cody]
60
+ * Use basic SkipJack host for all non-authorization transactions. Fix status method [cody]
61
+ * Strip non alpha numeric chars out of MerchantWare order number [cody]
62
+ * Parse complete response of Authorize.net CIM gateway [Patrick Joyce]
63
+ * Update to PayPal Sandbox URL for testing Payflow Pro Express Checkout. See Express Checkout for Payflow Pro guide [cody]
64
+ * Provide a C_STATE value of "Outside United States" for SageGateway when processing international customers [cody]
65
+ * PayPal Website Payments Pro Canada supports Amex [cody]
66
+ * Add line item support for LinkpointGateway. [Tony Primerano]
67
+ * Add support for SallieMae gateway [iamjwc]
68
+ * Add support for the JetPay gateway [Phil Ripperger, Peter Williams, cody]
69
+ * Add support for advanced SkipJack processors. Pass :advanced => true when constructing gateway [cody]
70
+ * Support test option in AuthorizeNetCimGateway [Tim]
71
+ * Improve Ogone error messages [cody]
72
+ * Add support for :test => true option to OgoneGateway [cody]
73
+ * Bump PayPal Version to 59.0 [cody]
74
+ * Add amex support to eWay gateway [cody]
75
+ * Change Payflow header X-VPS-Timeout -> X-VPS-Client-Timeout [cody]
76
+ * Fix typo preventing OgoneGateway from working in production [Nicolas Jacobeus]
77
+ * Add support for the Elavon MyVirtualMerchant gateway [jstorimer]
78
+ * Fix recurring transactions in Ogone gateway [cody]
79
+ * Fix money formatting for Ogone gateway [cody]
80
+ * Tweak Ogone gateway to use ActiveMerchant conventions for reference transactions [cody, jstorimer]
81
+ * Add support for the Ogone DirectLink payment gateway [Nicolas Jacobeus]
82
+ * Add support for the Antigua based FirstPay payment gateway [Phil R]
83
+ * Add support for PayPal reference transactions [kevin, John, Rahsun McAfee]
84
+ * Add support for the MerchantWARE payment gateway [cody]
85
+ * Rename Protx to SagePay [jstorimer]
86
+ * Allow test mode for eWay gateway [Duff OMelia]
87
+ * Don't use Time.parse for the ExpiryDate [cody]
88
+ * Add support for CVV code to Authorize.net CIM [Guy Naor]
89
+ * Add shipping address to Authorize.net [Eric Tarn]
90
+ * Don't setup the logger by default [cody]
91
+ * Refactor ActiveMerchant::Connection out of the PostsData module. Add support for logging and wiredumping requests [cody]
92
+ * Assume a valid load path when running tests [cody]
93
+ * Use SHIPTOSTREET2 element instead of STREET2 element for Payflow Express Uk address [cody]
94
+ * Clean up the test helper [cody]
95
+ * Fix DataCash unit test that was making a remote call [cody]
96
+ * Don't check Request#test? for remote PaymentExpress tests because their test environment has changed [cody]
97
+ * Update Instapay gateway to support capture and add address, order, and invoice fields. Add support for CVV and AVS response [cody]
98
+ * Add support for Instapay gateway [brahma]
99
+ * Cleanup PaymentExpress reference purchases and turn on AVS [cody]
100
+ * Add reference purchases and authorizations to PaymentExpress [mocra]
101
+ * Add support for Merchant e-Solutions Gateway [Zac Williams, Robby Russell]
102
+ * Fix Braintree unit test [cody]
103
+ * Add support for checks to SmartPs gateways [jvoohris]
104
+ * Extract SmartPs for Braintree and Transax [mmangino]
105
+ * Ruby 1.9 compatibility [bschwartz]
106
+ * Update Payflow Express to handle Street2 element [James MacAulay]
107
+ * Fix typo in Protx DeliveryState field [cody]
108
+ * Ignore Wirecard state unless it is 2 characters [Cody]
109
+ * Update Wirecard to make country and state processing more robust [Soleone]
110
+ * Update ProTX to use the latest v2.23 protocol [Tekin]
111
+
112
+ == Version 1.4.2 (April 24, 2009)
113
+
114
+ * Fix typo in Authorize.net CIM [infused]
115
+ * Add missing ISO countries [Edward Ocampo-Gooding]
116
+ * Add support for Guernsey to country.rb [cody]
117
+ * Add American Express to the MonerisGateway [cody]
118
+ * Use :words_connector instead of connector in RequiresParameters [cody]
119
+ * Fixed CreditCard not validating start_month and start_year when set as string [Tekin]
120
+ * Update PostsData to support get requests [cody]
121
+ * Fix broken Quickpay remote test [cody]
122
+ * Update Quickpay gateway to v3. Add support for offsite integration for Danish Dankort cards [Lars Pind]
123
+ * Use default partner id when passed in :partner is blank with PayflowGateway [cody]
124
+ * Remove PayflowGateway.certification_id [cody]
125
+ * Set Response#test? to true in TrustCommerce gateway when using the demo account in production [cody]
126
+ * Correctly set Sage.supported_countries [cody]
127
+ * Add BogusGateway#void [Donald Ball]
128
+ * Fix PSL gateway capturing [cody]
129
+ * Fix failed Visa debit purchases with PSL gateway start date info is present [cody]
130
+ * Support personal fixtures file on Windows [cody]
131
+ * Clearer variable naming for BraintreeGateway#authorize [Jonathan S. Katz]
132
+ * Fix brittle Authorize.net tests [cody]
133
+ * Add support for Authorize.net duplicate window [Seamus Abshere]
134
+ * Return transaction id for PayPal refunds [jxtps435]
135
+ * Allow storage of e-checks with BraintreeGateway [jimiray]
136
+ * Add test URL to PayJunction gateway [boomtowndesigngroup]
137
+ * More robust parsing for Wirecard gateway [Soleone]
138
+ * Pass the issue number to CardStream verbatim and update test card numbers [Soleone]
139
+
140
+ == Version 1.4.1 (December 9, 2008)
141
+
142
+ * Update CardStream URL. Note that you will also need to update your login id. [cody]
143
+
144
+ == Version 1.4.0 (November 27, 2008)
145
+
146
+ * Return failed authorization when SkipJack purchase fails [Tron, cody]
147
+ * Update README [cody]
148
+ * Add metadata to Authorize.net CIM gateway [cody]
149
+ * Make ActionViewHelper compatible with changes to concat method in ActionPack [cody]
150
+ * Remove PayPal and Payflow Name-Value gateways. PayPal is no longer terminating the Payflow XML API. [cody]
151
+ * Don't directly use the inflector in the action view helper [cody]
152
+ * Work around Rails Inflector change [cody]
153
+ * Add configurable timeouts to PostsData [Michael Koziarski]
154
+ * Add valid_sender? method to gateway integrations [Soleone]
155
+ * Fix PayPal error parsing [cody]
156
+ * Fix MIT-LICENSE [cody]
157
+ * Add a payment gateway for Website Payments Pro Canada [cody]
158
+ * Fix shipping amount option in Sage gateway [Darrick Wiebe]
159
+ * Improved message and error message handling [Soleone]
160
+ * Get Wirecard working in the Live environment [Soleone]
161
+ * Remove dead code in PayPal Common API files [cody]
162
+ * Use the PayPal short error message if the long message is empty [cody]
163
+ * Fix unit tests when being run by Cruise Control [cody]
164
+ * Add support for PayPal Fraud Review Response [cody]
165
+ * Add testing support for German Wirecard Gateway [Soleone]
166
+ * Specify required version of ActiveSupport [cody]
167
+ * Make ssl_strict a superclass_delegating_accessor so the entire application's validation of SSL certs can be disabled in the event of certificate problem. [cody]
168
+ * Make Gateway.application_id a superclass_delegating_accessor so it can be set from outside the subclass definition [cody]
169
+ * Add Discover to the list of supported card types for Braintree [cody]
170
+ * Add support for Modern Payments gateway [Jeremy Nicoll, cody]
171
+ * Add support for EFT/ACH and Interac Online to the BeanstreamGateway [cody]
172
+ * Document the SageGateway [cody]
173
+ * Add support for echecks with SageGateway. [cody]
174
+ * Handle all successful SecurePay AU response codes [cody]
175
+ * Get SageGateway working with real test account. Improve test suite. [cody]
176
+ * Unify TrustCommerce, Payment Express, and Braintree CC storage [benjamin.curtis]
177
+ * Update to use new Payflow Pro URLs [cody]
178
+ * Fix missing Content-Type header for Ruby 1.8.4 [cody]
179
+ * Fix Authorize.Net CIM response.message [patrick.t.joyce]
180
+ * Add JCB and Diners Club as supported cards to SageGateway [cody]
181
+ * Add CA country code to Sage gateway's supported countries [cody]
182
+ * Add support for Sage Payment Solutions gateway [cody]
183
+ * Add test mode detection to Beanstream [cody]
184
+ * Add support for Beanstream payment gateway [xiaobozz]
185
+ * Add support for PayPal NV Pair API. Will be used to replace the usage of the PayPal SOAP API in ActiveMerchant in the future [Greg Furmanek, cody]
186
+ * Protx does support UK Maestro [cody]
187
+ * Add tests for length of UK Maestro cards [cody]
188
+ * Return all the error messages and codes from paypal responses [cody]
189
+ * Fail hard when attempting to capture without a credit card with NetRegistry [cody]
190
+ * Add support for the order fields to the create_customer_profile_transaction in Authorize.net CIM. [Patrick T. Joyce]
191
+ * Strip invalid characters and limit lengths of Protx customer data [Simon Russell]
192
+ * Fix empty start or end dates in Protx [Simon Russell]
193
+ * Add support for Authorize.net CIM [Patrick T. Joyce, Ian Lotinsky]
194
+ * Add option to skip order review to all PayPal Express gateways [garret.alfert, cody]
195
+ * Add capturing partial amounts, fix issue number formatting, fix authorization string when nil values returned, fix parsing of multiple '=' characters, simplify message_from [Simon Russell]
196
+ * Fix StartDate in ProtxGatewy [cody]
197
+ * Add support for refunds and continuous authority references to DataCashGateway [joel.chippindale]
198
+ * Fix gross in HiTrust notification. Don't use Money object in Verifi gateway [cody]
199
+ * Initial implementation of Payflow Name-Value API [Greg Furmanek]
200
+ * Add support for CyberSource credits [mjuneja]
201
+
202
+ == Version 1.3.2 (February 24, 2008)
203
+
204
+ * Actually fix the bug by adding extdata element to Payflow Requests [cody]
205
+ * Fix bug with adding name to Payflow requests [cody]
206
+ * Gateways will now look for CreditCard#brand before looking for CreditCard#type [cody]
207
+ * Make before_validate in CreditCard more clear [keith_du...@mac.com, cody]
208
+ * Don't send full Australian state names to PayPal [cody]
209
+ * Return last_digits that are less than 4 characters long [cody]
210
+ * Fix Bug with Authorize.Net ARB Remote Test [patrick.t.joyce]
211
+ * Add support for forcing test mode on Secure Pay AU gateway [cody]
212
+ * Update Secure Pay Au to meet specs for MessageInfo elements [cody]
213
+ * Add support for the Australian Secure Pay payment gateway [cody]
214
+ * Allow LinkPoint cancellations for recurring billing. [yanagimoto.shin]
215
+ * Add support for Åland Islands to the country list [cody]
216
+
217
+ == Version 1.3.1 (January 28, 2008)
218
+
219
+ * Rename BrainTreeGateway to BraintreeGateway, but keep alias to old naming for backwards compatibility [cody]
220
+
221
+ == Version 1.3.0 (January 28, 2008)
222
+
223
+ * Remove attr_readers for url and response from Gateway [cody]
224
+ * Remove @url from EfsnetGateway [cody]
225
+ * Remove @response instance variable in QuickpayGateway. [cody]
226
+ * Remove @response instance variable in PsigateGateway. Don't use billing address for shipping [cody]
227
+ * Remove @response instance variable in PaypalGateway. Don't use billing address for shipping. [cody]
228
+ * Remove @response instance variable in PayflowGateway [cody]
229
+ * Remove @response instance variable in MonerisGateway [cody]
230
+ * Remove @response instance variable and don't use billing address for shipping address in LinkpointGateway [cody]
231
+ * Remove @response instance variable from ExactGateway [cody]
232
+ * Remove @response instance variable from EwayGateway [cody]
233
+ * Remove @response instance variable from EfsnetGateway [cody]
234
+ * Remove @response instance variable from DataCashGateway [cody]
235
+ * Don't use billing_address for shipping_address in CyberSourceGateway [cody]
236
+ * Remove @response instance variable from CardStreamGateway [cody]
237
+ * Remove @response instance variable from BrainTreeGateway [cody]
238
+ * Remove unused deal_with_cc method from BogusGateway [cody]
239
+ * Remove test_result_from_cc_number completely from ActiveMerchant [cody]
240
+ * Don't use billing_address for shipping_address in Realex [cody]
241
+ * Update Realex to add support for cvv data. remove test_result_from_cc_number. [cody]
242
+ * Update Protx to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
243
+ * Include ActiveMerchant::Utils module in test_helper and use generate_unique_id from the module instead of generate_order_id. [cody]
244
+ * Update SecurePay tests to check for avs and cvv data. [cody]
245
+ * Update SkipJack to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
246
+ * Move generate_unique_id to its own module [cody]
247
+ * Update Viaklix to add support for avs and cvv data. remove test_result_from_cc_number. Truncate fields to avoid failure [cody]
248
+ * Update PSL Card Gateway to add support for avs and cvv data. remove test_result_from_cc_number. [cody]
249
+ * Update PlugNPayGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
250
+ * Update PaymentExpressGateway to remove test_result_from_cc_number. [cody]
251
+ * Update PaySecure to remove test_result_from_cc_number. [cody]
252
+ * Update NetbillingGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
253
+ * Replace all usage of :address with :billing_address in test cases [cody]
254
+ * Remove sensitive data from NetRegistryGateway responses. Refactor gateway and tests. Remove test_result_from_cc_number. [cody]
255
+ * Update VerifiGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
256
+ * Small refactoring of UsaEpayGateway [cody]
257
+ * Update UsaEpayGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
258
+ * Update TrustCommerce docs now that the gateway falls back to SSL post when tclink isn't available [cody]
259
+ * Change ARB to use correct :address1 key for addresses [cody]
260
+ * No need for specialized recurring response for Authorize.net recurring billing [cody]
261
+ * Update TransFirst to support avs and cvv data. Remove test_result_from_cc_number. [cody]
262
+ * Maintain backwards compatibility with :address option for now in the Payflow gateways [cody]
263
+ * Remove test_result_from_cc_number from SecurePayTech. Improve unit test coverage [cody]
264
+ * Fix email option in PayflowGateway. Remove support for :address option. :billing_address and :shipping_address must now be passed in separately. [cody]
265
+ * Make Bogus gateway's credit() method behave like capture [cody]
266
+ * Add update and delete methods to update and delete records stored in the vault. [benjamin.curtis]
267
+ * Add support for recurring_inquiry() to the PayflowGateway [dave.my...@contentfree.com]
268
+ * Add support for Authorize.net Automated Recurring Billing (ARB) [vkurnavenkov, forestcarlisle, ianlotin...@hotmail.com, patrick.t.joyce]
269
+ * Fix laser card regex [ladislav.martincik]
270
+ * Cleanup whitepace in README [patrick.t.joyce]
271
+ * Update ExactGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
272
+ * Remove test_result_from_cc_number from eWay gateway. [cody]
273
+ * Remove duplicate attr_reader definitions from all gateways [cody]
274
+ * Remove useless tests raising Error [cody]
275
+ * Update gateway templates [cody]
276
+ * Fix Authorize.net test where authorize() was being called instead of purchase(). Perform some cleanup of the tests [ianlotin...@hotmail.com, cody]
277
+ * Improve Authorize.net documentation based on the DataCashGateway docs [patrick.t.joyce]
278
+ * Update EfsnetGateway to support avs and cvv data. Remove test_result_from_cc_number. [cody]
279
+ * Remove test_result_from_cc_number from DataCash. Improve unit test coverage [cody]
280
+ * Update CyberSourceGateway to support avs and cvv results. Remove test_result_from_cc_number. [cody]
281
+ * Remove match information from CVVResult [cody]
282
+ * Remove Response#card_data. The application has access to the information anyway [cody]
283
+ * Return the last 4 digits of the card number from the Response instead of the masked number [cody]
284
+ * Actually use the shipping address in TrustCommerce [cody]
285
+ * Update TrustCommerceGateway to support avs and cvv results. Remove test_result_from_cc_number. Automatically fallback to SSL POST if the TCLink library is not available. Add additional customer information to the requests. [cody]
286
+ * Fix remote CardStreamGateway tests [cody]
287
+ * Map merchant AVS codes to street and postal match codes [cody]
288
+ * Update CardStreamGateway to support avs and cvv data [cody]
289
+ * Remove merchant_data hash. Add additional CVV codes [cody]
290
+ * Update QuickpayGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
291
+ * Update LinkpointGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
292
+ * Update PsigateGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
293
+ * Update MonerisGateway to support merchant_data hash. Remove test_result_from_cc_number. [cody]
294
+ * Remove AVS Message and CVV2 Message from params hash in Authorize.net [cody]
295
+ * Update BrainTreeGateway to support merchant_data hash [cody]
296
+ * Update PaypalGateway to support merchant_data hash [cody]
297
+ * Update Payflow to support merchant_data hash [cody]
298
+ * Add card data to PayJunction response. PayJunction does not return the CVV or AVS result codes. Remote test_result_from_cc_number from PayJunction. [cody]
299
+ * Rename CCVResult to CVVResult to be more aligned with ActiveMerchant's usage of the term verification value [cody]
300
+ * Remove test_result_from_cc_number from Authorize.net in favour of mocking [cody]
301
+ * Add merchant_data hash, which contains all of the card_data, avs_result, and ccv_result. [cody]
302
+ * Add CCVResult for the Card Code Verification Result. Update Authorize.net to use the new class [cody]
303
+ * Rename AVSResult#match_type AVSResult#match [cody]
304
+ * Rename AVS::Result class to AVSResult [cody]
305
+ * Convert Authorize.net gateway to use the new AVS module [cody]
306
+ * Add AVS data to the Response object [cody]
307
+ * Fix credentials for remote Authorize.net TEST MODE test [cody]
308
+ * Add AVS module and AVS::Result class [cody]
309
+ * Update base gateway class RDOC [cody]
310
+ * Update the README with the latest list of supported gateways. Update the example in the README to include the verification value, which is now required by the credit card object by default. [cody]
311
+ * Handle the return from 2Checkout [cody]
312
+ * Automatically determine the credit card type when a type is not provided [cody]
313
+ * Revert to initial implementation of LUHN algorithm because it all fits in one simple method [cody]
314
+ * Remove unused api_cert_chain.crt file [cody]
315
+ * Update PaypalGateway, and PaypalExpressGateway to send requests to the correct endpoints when using API signatures [cody]
316
+ * Successful return code for HiTRUST is actually 00 [cody]
317
+ * Make ActiveMerchant::Billing::Error a subclass of ActiveMerchant::ActiveMerchantError [cody]
318
+ * Handle the return from the offsite payment gateways [cody]
319
+ * Default HiTRUST order description to "Store purchase" [cody]
320
+ * Fix HiTRUST field names [cody]
321
+ * Add support for passing in the locale code [georg.fr...@meandevel.com]
322
+ * Add support for the Offsite payment gateway HiTRUST [cody]
323
+ * Accept SuccessWithWarning as success [cody]
324
+ * Add a link to the LinkPoint staging server docs in remote_linkpoint_test.rb [cody]
325
+ * Update Discover regex [cody]
326
+ * Match full pan range of Maestro cards from 12 - 19 digits in length [cody]
327
+ * Fix errors on base of CreditCard [josh.bassett]
328
+ * Update product to use Rubigen instead of stolen Rails generator [cody]
329
+ * Mimic directory structure of unit tests in remote tests [cody]
330
+ * Restructure the location of the remote tests [cody]
331
+ * Ensure DataCash order_id is limited to 30 characters [cody]
332
+ * Return the pretty messages from PayJunction based on the return code [cody]
333
+ * make CreditCard.require_verification_value = true the default [cody]
334
+ * Use existing credit_card helper in credit card tests [cody]
335
+ * Return the authrorization number of the original transaction in the SkipJack gateway [cody]
336
+ * Update format of line items given to the gateway. Cleanup and uncomment unit tests [cody]
337
+ * Add support for the SkipJack gateway [Bill Bereza, cody]
338
+ * Make the bogus gateway easier to test by moving messages into constants [cody]
339
+ * Add retry logic when connection has been refused for all gateways. Enable safe retries of all connection failures with the PayflowGateway, as it has a unique request header. [cody]
340
+ * Catch Timeout::Error when posting data [cody]
341
+ * Change order of loading ActionPack for tests since assert_success defined in ActionController::Assertions::DeprecatedAssertions inteferes with ActiveMerchant's definition [cody]
342
+ * Catch Errno::ETIMEDOUT and extend open and read timeouts to 60 seconds [cody]
343
+ * Add address2 to the billing address of Viaklix transactions [cody]
344
+ * Improve Psigate generic error message [cody]
345
+ * Fix small errors in Psigate documentation [cody]
346
+ * Add Response#fraud_review? query method to the response. Allows gateways to indicate that a payment is pending review by the fraud service [cody]
347
+ * Handle Errno::ECONNRESET when posting data [cody]
348
+ * Fix broken USA ePay URL [cody]
349
+ * Update RequiresParameters to support HashWithIndifferentAccess [cody]
350
+ * Add support for SecurePayTech payment gateway [Jasper Bryant-Greene]
351
+ * Detect when test credentials are being used with PayJunction [cody]
352
+ * Update documentation about TrustCommerce void [cody]
353
+ * Add void to TrustCommerce [jesse.c.scott]
354
+ * Add support for echecks to the BrainTree gateway [Jeremy Voorhis]
355
+ * Fix before_validate and validate methods in CreditCard [rick.denatale]
356
+ * Add support for Netbilling payment gateway [cody]
357
+ * Pass in N/A for unknown states when a country is present in PaypalGateway [cody]
358
+ * Strip non alpha chars from order_id in Payflow gateway, as Paymentech Tampa can't handle them [cody]
359
+ * Add support for the PaySecure payment gateway [cody]
360
+ * Add support for descriptions in Authorize.net credits [shiva.kaul]
361
+ * Great cleanup and improvement of CreditCard code, tests, and docs [James Herdman]
362
+
363
+ == Version 1.2.1
364
+
365
+ * Fix remote PayPal tests [cody]
366
+
367
+ == Version 1.2.0
368
+
369
+ * Update Linkpoint tests to remove useless pem file [cody]
370
+ * Use symbols for CreditCard error messages, since errors have indifferent access [cody]
371
+ * Improve CreditCard error messages [George Ogata]
372
+ * Change deny to assert_false, and deny_success to assert_failure. Remove Gateway.gateway, as it is available from Base [cody]
373
+ * Improve documentation, and test coverage [James Herdman]
374
+ * Refactor MonerisGateway, improve test coverage and documentation [James Herdman]
375
+ * Add support for crediting to Moneris [James Herdman]
376
+ * Send state N/A in Payflow when the state is blank. Fixes UK PayPal Express payments when not providing a state [cody]
377
+ * Load remote test credentials from a fixtures file. ActiveMerchant will look for a custom file ~/.active_merchant/fixtures.yml. If the file exists it will be loaded instead of the default fixtures provided by ActiveMerchant. This makes development easier, and removes the risk of committing non-public test account credentials to subversion. [cody]
378
+ * Add support for password protected pem files [cody]
379
+ * Add support for Concord Efsnet payment gateway [snacktime]
380
+ * Fix dependency loading for gateways that are subclasses [cody]
381
+ * Add Braintree payment gateway [Michael J. Mangino]
382
+ * Add support for PayPal API signatures [Benjamin Curtis, cody]
383
+ * Add payment gateway Viaklix [Sal Scotto, cody]
384
+ * Add Australian payment gateway NetRegistry [George Ogata]
385
+ * Take order email from the options hash instead of the address for CyberSource [cody]
386
+ * Use an array for LineItems when calculating tax in CyberSource gateway [cody]
387
+ * Add CyberSource gateway [Matt Margolis]
388
+ * Sanitize Protx order id [cody]
389
+ * Fix support for electron in Protx [cody]
390
+ * Add support for Protx [shiftx, cody]
391
+ * Use undef_method with a single argument in SecurePay to prevent JRuby from choking on it. [jonathan.l.bartlett]
392
+ * Default address_override to 0 for PayPal Website Payments Standard payments. [cody]
393
+ * Enhance credit card error messages [manfred]
394
+ * Use HashWithIndifferentAccess for CreditCard for compatibility with Rails applications [michael.j.mangino]
395
+ * Fix nil exception when no response reason text is found in Authorize.net [cody]
396
+ * Add support for PayJunction [Matt Sanders]
397
+ * Change billing_address to shipping_address in PayPal Integration helper, as billing_address was incorrect. Addresses passed to billing_address for the PayPal helper will no longer be added to the form. This will break existing code, as the address will not be passed.
398
+ * Remove switch patterns from card detection that were eliminated on July 1, 2007 [cody]
399
+ * Format the issue number in Payflow requests to always be 2 digits [cody]
400
+ * Move application_id to Gateway and Helper class respectively [cody]
401
+ * Improve TrustCommerce documentation [cody]
402
+ * Add credit to Payflow [cody]
403
+ * Add support for the Plug 'N Pay gateway [ryan.norbauer, cody]
404
+ * Add support for ItemTotal, Shipping, Handling, and Tax amounts in the PayPal Express and PayPal gateways [baldwindavid, cody]
405
+ * Add page customization options to the PaypalExpress, and PayflowExpress gateways [ cpjolicoeur, cody]
406
+ * Add Verifi gateway [Paul Hepworth]
407
+ * Add a PayflowResponse object with a profile_id accessor method. Return the correct authorization number on recurring actions [cody]
408
+ * Add support for an initial transaction with recurring payments [findchris, cody]
409
+ * Add support for email receipts to recurring Payflow Payments [Rick Olson]
410
+ * Ensure the ButtonSource isn't too long [cody]
411
+ * Add ButtonSource to Paypal and PaypalExpress gateways [cody]
412
+ * Rename application to application_id and place it on Base, so it can be set once and forgotten about [cody]
413
+ * Add ButtonSource field to PayflowExpress gateway [cody]
414
+ * Add a field for the bn to the PayPal helper [cody]
415
+ * Add remote secure pay test and correctly define test? [cody]
416
+ * Undefine unsupported methods from SecurePay [cody]
417
+ * Enhance the TransFirst error message for declined transactions [cody]
418
+ * Add initial support for TransFirst gateway [cody]
419
+ * Deprecate certification_id in Payflow gateways [cody]
420
+ * Work around required PayPal state fields for countries that don't require states [cody]
421
+ * Add metadata to SecurePay gateway [cody]
422
+ * Add initial support for the SecurePay gateway using the Authorize.net translator [cody]
423
+ * Add the homepage_url and display_name accessors to each gateway [cody]
424
+ * Remove Money dependency from main gateways. Cleanup tests. Add supported_countries class accessor which returns an array of 2 digit iso country codes for which countries the gateway supports accounts in [cody]
425
+ * Add American Express card to Psigate [cody]
426
+ * Send N/A to PayPal in the PayPal Helper when we don't know the UK county [cody]
427
+ * Actually pass the amount of the capture through to Payflow [cody]
428
+ * Update ExactGateway test and test mode [cody]
429
+ * Remove unused method in PslCardGateway [cody]
430
+ * Add updated credit card tests [cody]
431
+ * Update and test PslCardGateway [cody]
432
+ * Add Laser card type [cody]
433
+ * Update Nochex documentation [cody]
434
+ * Sanitize the Realex order_id [cody]
435
+ * Add support for Irish Realex payment gateway [John Ward, cody]
436
+ * Move credit_card helper method to the test_helper [cody]
437
+ * Update PayflowExpressResponse to match the interface of the PayflowExpressResponse. Add :no_shipping and :address_override options to PayflowExpress [cody]
438
+ * Add a currency option to the Payflow and Paypal gateways [cody]
439
+ * PaypalExpress should use the shipping address, not the billing address [cody]
440
+ * Allow overriding the user with Payflow so that a vendor and user can be provided when making requests [cody]
441
+ * PayPal DirectPayment API requires a UK County to be sent as the state or province. Return N/A as the state when one isn't provided to ensure that PayPal doesn't reject the payment [cody]
442
+ * Add ability to perform reference transactions with Payflow [Al Evans, cody]
443
+ * Enhance recurring Payflow tests and recurring_inquiry [Al Evans]
444
+ * Add recurring payments to Payflow [Rick Olson]
445
+ * Improve the error message generated by requires! [cody]
446
+ * Update credit card regular expressions and update Quickpay gateway with tests for new cards [cody]
447
+ * Add support for token based payments to PaymentExpress [Nik Wakelin]
448
+ * Refactor default_currency to the base gateway class [cody]
449
+ * Clean unsupported characters from the Quickpay ordernum [cody]
450
+ * Call the :sale and :authorization in QuickpayGateway [cody]
451
+ * Add Danish gateway Quickpay [cody]
452
+ * Remove redundant hash brackets from generator template [cody]
453
+ * Add additional options to the PayPal Website Payments Standard Helper [Rick Olson]
454
+ * Move generate_unique_id method to Gateway class so other gateways can also use it [cody]
455
+ * Allow notification name / value pairs to have a . in the name like checkout.x = 400 [cody]
456
+ * Fix PaypalExpressGateway#purchase to have the same method signature as other gateways [cody]
457
+ * Cargo cult off the rails unique id generator instead of UUID library [cody]
458
+ * Add uuid-1.0.3 for generating random request UUIDs [cody]
459
+ * Remove mock_methods and http mock from the library [cody]
460
+ * PaypalExpress cannot setup a payment for 0 dollars. If the amount is zero then setup a payment for $1. [cody]
461
+ * Small changes to PslCard gateway [cody]
462
+ * Fix Money dependency with PslCard gateway [cody]
463
+ * Add PslCard payment gateway [MoneySpyder http://moneyspyder.co.uk]
464
+ * Scrub the card number, expiry, and CVV code from the response [cody]
465
+ * Use test? query for checking test mode [cody]
466
+ * Add support for the E-xact Payment Gateway [James Edward Gray II, cody]
467
+ * Fix partially broken method of dealing with phone numbers in the PayPal Helper [cody]
468
+ * Update remote tests for PaymentExpress [cody]
469
+ * Add Content-Type header to PaymentExpress post [cody]
470
+ * Use DECLINED as the message for declined transactions in the PaymentExpress remote tests [cody]
471
+ * Add JCB as a supported card type for the PaymentExpressGateway [cody]
472
+ * Rename DpsGateway to PaymentExpressGateway [cody]
473
+ * Add DPS Payment Express gateway (NZ) [dgjones, cody]
474
+ * Remove duplicate and incorrect expdate method from Authorize.net [cody]
475
+ * Allow authorization and purchase using a billing_id retrieved from TrustCommerce citadel [jesse.c.scott]
476
+ * Don't return a frozen string from CreditCard.type? [cody]
477
+ * Update remote Psigate test to ensure using a verification value doesn't break anything [cody]
478
+ * Update remote Moneris test to ensure using a verification value doesn't break anything [cody]
479
+ * Fix Solo issue number with CardStream gateway and improve test coverage [cody]
480
+ * Add CardStream gateway [Jonah Fox, Thomas Nichols, cody]
481
+ * Verify Peer in PayPal notifications and add account method [cody]
482
+
483
+ == Version 1.1.0
484
+
485
+ * Add unique_id option to PayPal mass payments [Haig]
486
+ * Fix expiry date in USA ePay [cody]
487
+ * Fix PayPal Payments Pro UK with Switch & Solo cards [cody]
488
+ * Add reauthorization to PaypalGateway and PaypalExpressGateway [dorrenchen]
489
+ * Update DataCash tests and format merchant reference number to meet DataCash's requirements [MoneySpyder, cody]
490
+ * Add Datacash gateway [MoneySpyder, cody]
491
+ * VERIFY_PEER on all SSL requests [cody]
492
+ * Add support for 2Checkout [cody]
493
+
494
+ == Version 1.0.3
495
+
496
+ * Add support for PayPal mass payments to the PaypalGateway and the PaypalExpressGateway [Brandon Keepers]
497
+ * Add a credit method to Authorize.net [cody]
498
+
499
+ == Version 1.0.2
500
+
501
+ * Add support for OrderDescription, Payer, and InvoiceID fields in PaypalGateway [cody]
502
+
503
+ == Version 1.0.1
504
+
505
+ * Add support for crediting to PayPal [cody, Haig]
506
+
507
+ == Version 1.0.0
508
+
509
+ * Add discover to list of supported card types for Authorize.net
510
+ * Fix Psigate crediting [sean.alien8@gmail.com]
511
+ * Fix dependency loading of tests
512
+ * Add methods for storing credit cards to the Bogus gateway [Jim Kane]
513
+ * Fix bugs in expiration dates. [Jim Kane]
514
+ * Fixed bugs related to authorized.net [Rick Olson]
515
+ * Linkpoint is now a full featured backend for active merchant [Ryan Heneise]
516
+ * Added linkpoint support [Ryan Heneise]
517
+ * Added trust commerce gateway [Hans Friedrich]
518
+ * Removed shipping stuff until there is time to implement it properly
519
+ * The library now rejects money amounts which are not either cents as integer or a Money object
520
+ * Moneris now uses the same layout as the authorized.net plugin
521
+ * Added authorized.net
522
+ * Changed default to :test mode. Set to production with ActiveMerchant::Billing::Base.gateway_mode = :production
523
+ * More refactoring
524
+ * Refactored a bit so that there is space for billing and shipping area. None of the shipping aids are fleshed out yet. Needs more work.
525
+ * Added Moneris support
526
+ * Credit card in memory object resembling a AR object
527
+ * Credit card validation methods as static methods of the credit card object
528
+
529
+ == PlanetArgon fork for integrating Merchant eSolutions gateway
530
+
data/CONTRIBUTORS ADDED
@@ -0,0 +1,142 @@
1
+ Protx Gateway
2
+
3
+ * Contributed by shiftx (Vincent)
4
+
5
+ Verifi Gateway
6
+
7
+ * Contributed by Paul Hepworth on 2007-05-12.
8
+ * Portions of Verifi Gateway Copyright (c) 2007 Paul Hepworth
9
+
10
+ Plug 'N Pay Gateway
11
+
12
+ * Contributed by Ryan Norbauer
13
+
14
+ PayJunction Gateway
15
+
16
+ * Contributed by Matt Sanders
17
+
18
+ E-xact Gateway
19
+
20
+ * Contributed by James Edward Gray II
21
+
22
+ Linkpoint Gateway
23
+
24
+ * Portions of the LinkPoint Gateway by Ryan Heneise
25
+
26
+ eWay Gateway
27
+
28
+ * Originally contributed by Lucas Carlson (mailto:lucas@rufy.com)
29
+
30
+ CardStream Gateway
31
+
32
+ * Portions of the Cardstream gateway by Jonah Fox and Thomas Nichols
33
+
34
+ CyberSource Gateway
35
+
36
+ * Contributed by Matt Margolis (matt@mattmargolis.net)
37
+
38
+ NetRegistry Gateway
39
+
40
+ * Originally contributed by George Ogata (mailto: george.ogata@gmail.com)
41
+
42
+ DataCash Gateway (March 2, 2007)
43
+
44
+ * MoneySpyder, http://moneyspyder.co.uk and E-consultancy, http://www.e-consultancy.com
45
+
46
+ PSL Card Gateway (March 27, 2007)
47
+
48
+ * MoneySpyder, http://moneyspyder.co.uk
49
+
50
+ Viaklix Gateway (Sep 3, 2007)
51
+
52
+ * Originally contributed by Sal Scotto
53
+
54
+ Braintree Gateway (Sep 4, 2007)
55
+
56
+ * Originally contributed by Michael J. Mangino
57
+ * Portions of the BrainTree gateway by Jeremy Voorhis
58
+
59
+ Concord Efsnet Gateway (Sep 7, 2007)
60
+
61
+ * Originally contributed by snacktime
62
+
63
+ SecurePayTech Gateway (Oct 23, 2007)
64
+
65
+ * Originally contributed by Jasper Bryant-Greene
66
+
67
+ SkipJack Gateway (Nov 29, 2007)
68
+
69
+ * Originally contributed by Bill Bereza - http://atomicobject.com
70
+
71
+ HiTRUST Gateway (Dec 10, 2007)
72
+
73
+ * Jaded Pixel
74
+
75
+ Payflow NV Gateway (Mar 03, 2008)
76
+
77
+ * Greg Furmanek
78
+
79
+ PaypalNVGateway (Apr 12, 2008)
80
+
81
+ * Greg Furmanek
82
+
83
+ Beanstream (May 13, 2008)
84
+
85
+ * Created by xiaobozz ( xiaobozzz at gmail dot com )
86
+
87
+ Sage (June, 2008)
88
+
89
+ * Cody
90
+
91
+ Modern Payments (June 13, 2008)
92
+
93
+ * Initial implementation by Jeremy Nicoll
94
+ * Additional portions by Cody Fauser
95
+
96
+ Wirecard Gateway (June 30, 2008)
97
+
98
+ * Initial implementation by Soleone
99
+
100
+ Transax Gateway (May 3, 2009)
101
+
102
+ * Mike Mangino
103
+
104
+ Merchant E-Solutions Gateway (May 3, 2009)
105
+
106
+ * Zac Williams, Robby Russell
107
+
108
+ Instapay Gateway (May 3, 2009)
109
+
110
+ * Thomas Rideout
111
+
112
+ MerchantWARE (July 7, 2009)
113
+
114
+ * Cody Fauser
115
+
116
+ FirstPay (July 24, 2009)
117
+
118
+ * Phil R
119
+
120
+ Ogone (July 20, 2009)
121
+
122
+ * Nicolas Jacobeus
123
+
124
+ Elavon (August 09, 2009)
125
+
126
+ * Jesse Storimer
127
+
128
+ JetPay (September 29, 2009)
129
+
130
+ * Phil Ripperger, Peter Williams
131
+
132
+ SallieMae (October 2, 2009)
133
+
134
+ * iamjwc
135
+
136
+ Garanti (May 05, 2010)
137
+
138
+ * Selem Delul (moon@mac.home)
139
+
140
+ Braintree Blue Gateway (May 19th, 2010)
141
+
142
+ * Braintree (code@getbraintree.com)