module ACH

Support for building the files necessary for the bulk exchange of debits and credits with financial institutions via the Automated Clearing House system, governed by NACHA ( www.nacha.org/ ).

Constants

VERSION

Gem version

Public Class Methods

to_const(name) click to toggle source

For a given string, try to locate the corresponding constant (apparently Class) under the {ACH} or {ACH::Record} modules.

@param [String] name @return [Object]

# File lib/ach_builder.rb, line 30
def self.to_const(name)
  [self, self::Record].detect{ |mod| mod.const_defined?(name) }.const_get(name)
end