Skip to content
Active Utils extracts commonly used modules and classes used by Active Merchant, Active Shipping, and Active Fulfillment
Ruby
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github
gemfiles Remove the upperbound constraint on ActiveSupport: Nov 29, 2018
lib
test Update country_test.rb Dec 16, 2018
.gitignore
.travis.yml Remove the upperbound constraint on ActiveSupport: Nov 29, 2018
CHANGELOG.md
CONTRIBUTING.md
Gemfile
MIT-LICENSE Initial commit Aug 19, 2011
README.md
Rakefile
active_utils.gemspec Remove the upperbound constraint on ActiveSupport: Nov 29, 2018
shipit.rubygems.yml

README.md

ActiveUtils Build Status

ActiveUtils extracts commonly used modules and classes extracted from Active Merchant, to be used for other integration libraries.

Included modules and classes

  • Connection - base class for making HTTP requests
  • Country - find countries mapped by name, country codes, and numeric values
  • Error - common error classes used throughout the Active projects
  • PostData - helper class for managing required fields that are to be POST-ed
  • PostsData - making SSL HTTP requests
  • RequiresParameters - helper method to ensure the required parameters are passed in
  • Validateable - module used for making models validateable
  • NetworkConnectionRetries - module for retrying network connections when connection errors occur
  • CurrencyCode - ensure currency codes are ISO, and convert colloquial codes to ISO.

Libraries that depend on ActiveUtils

ActiveMerchant link

While most of the code in this library was extracted from ActiveMerchant, ActiveMerchant itself doesn't use this library anymore. For PCI compliance reasons, we aim to keep the number of dependencies of ActiveMerchant as low as possible. For this reason, many of these classes and modules are mirrored in ActiveMerchant (e.g. ActiveUtils::Connection vs. ActiveMerchant::Connection. When making changes to this library, you may want to mirror those changes in ActiveMerchant.

Misc

  • This project is MIT licensed.
  • Contributions are gladly accepted! See CONTRIBUTING.md for more information.
You can’t perform that action at this time.