Sha256: dbe38ce3cb7701ccabfb97f4de6d87084caee73135bafcf3377f7625cc609608
Contents?: true
Size: 1020 Bytes
Versions: 2
Compression:
Stored size: 1020 Bytes
Contents
require "intacctrb/version" require 'net/http' require 'nokogiri' require 'hooks' require 'ostruct' require "intacctrb/base" require "intacctrb/contact" require "intacctrb/customer" require "intacctrb/employee" require "intacctrb/journal_entry" require "intacctrb/vendor" require "intacctrb/invoice" require "intacctrb/bill" require "intacctrb/ap_payment" require "intacctrb/account" require "intacctrb/attachment" require "intacctrb/exceptions/base" require "intacctrb/exceptions/vendor" require "intacctrb/exceptions/bill" require "intacctrb/exceptions/attachment" require "intacctrb/exceptions/ap_payment" class Object def blank? respond_to?(:empty?) ? empty? : !self end def present? !blank? end end module IntacctRB extend self attr_accessor :xml_sender_id , :xml_password , :app_user_id , :app_company_id , :app_password , :invoice_prefix , :bill_prefix , :vendor_prefix , :customer_prefix def setup yield self end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
intacctrb-0.6.3 | lib/intacctrb.rb |
intacctrb-0.6.2 | lib/intacctrb.rb |