Sha256: f27ef370f0cb95eec34155baba1370e1cc9c697f8e7cb01b6f768b7b25a5677f
Contents?: true
Size: 1.87 KB
Versions: 4
Compression:
Stored size: 1.87 KB
Contents
#-- # Copyright (c) 2005 Tobias Luetke # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #++ $:.unshift(File.dirname(__FILE__)) # Include rails' active support for all the core extensions we love begin require 'active_support' rescue LoadError require 'rubygems' require 'activesupport' end begin require 'builder' rescue LoadError require 'rubygems' require 'builder' end require 'cgi' require 'active_merchant/lib/validateable' require 'active_merchant/lib/posts_data' require 'active_merchant/lib/requires_parameters' # Require the country class require 'active_merchant/lib/country' # CreditCard Utility class. require 'active_merchant/billing/credit_card' require 'active_merchant/billing/base' # Require the supported gateways require 'active_merchant/billing/gateways' # Require the supported integrations require 'active_merchant/billing/integrations'
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
activemerchant-1.0.1 | lib/active_merchant.rb |
activemerchant-1.0.2 | lib/active_merchant.rb |
activemerchant-1.0.3 | lib/active_merchant.rb |
activemerchant-1.0.0 | lib/active_merchant.rb |