Module: IntacctRB
- Extended by:
- IntacctRB
- Included in:
- IntacctRB
- Defined in:
- lib/intacctrb.rb,
lib/intacctrb/base.rb,
lib/intacctrb/bill.rb,
lib/intacctrb/logger.rb,
lib/intacctrb/vendor.rb,
lib/intacctrb/account.rb,
lib/intacctrb/contact.rb,
lib/intacctrb/invoice.rb,
lib/intacctrb/version.rb,
lib/intacctrb/customer.rb,
lib/intacctrb/employee.rb,
lib/intacctrb/ap_payment.rb,
lib/intacctrb/attachment.rb,
lib/intacctrb/journal_entry.rb,
lib/intacctrb/exceptions/base.rb,
lib/intacctrb/exceptions/bill.rb,
lib/intacctrb/exceptions/vendor.rb,
lib/intacctrb/ap_payment_request.rb,
lib/intacctrb/exceptions/ap_payment.rb,
lib/intacctrb/exceptions/attachment.rb
Defined Under Namespace
Modules: Exceptions Classes: APPayment, APPaymentRequest, Account, Attachment, Base, Bill, Contact, Customer, Employee, Invoice, JournalEntry, Vendor
Constant Summary collapse
- VERSION =
"0.9.5"
Instance Attribute Summary collapse
-
#app_company_id ⇒ Object
Returns the value of attribute app_company_id.
-
#app_password ⇒ Object
Returns the value of attribute app_password.
-
#app_user_id ⇒ Object
Returns the value of attribute app_user_id.
-
#bill_prefix ⇒ Object
Returns the value of attribute bill_prefix.
-
#customer_prefix ⇒ Object
Returns the value of attribute customer_prefix.
-
#invoice_prefix ⇒ Object
Returns the value of attribute invoice_prefix.
-
#vendor_prefix ⇒ Object
Returns the value of attribute vendor_prefix.
-
#xml_password ⇒ Object
Returns the value of attribute xml_password.
-
#xml_sender_id ⇒ Object
Returns the value of attribute xml_sender_id.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#app_company_id ⇒ Object
Returns the value of attribute app_company_id.
38 39 40 |
# File 'lib/intacctrb.rb', line 38 def app_company_id @app_company_id end |
#app_password ⇒ Object
Returns the value of attribute app_password.
38 39 40 |
# File 'lib/intacctrb.rb', line 38 def app_password @app_password end |
#app_user_id ⇒ Object
Returns the value of attribute app_user_id.
38 39 40 |
# File 'lib/intacctrb.rb', line 38 def app_user_id @app_user_id end |
#bill_prefix ⇒ Object
Returns the value of attribute bill_prefix.
38 39 40 |
# File 'lib/intacctrb.rb', line 38 def bill_prefix @bill_prefix end |
#customer_prefix ⇒ Object
Returns the value of attribute customer_prefix.
38 39 40 |
# File 'lib/intacctrb.rb', line 38 def customer_prefix @customer_prefix end |
#invoice_prefix ⇒ Object
Returns the value of attribute invoice_prefix.
38 39 40 |
# File 'lib/intacctrb.rb', line 38 def invoice_prefix @invoice_prefix end |
#vendor_prefix ⇒ Object
Returns the value of attribute vendor_prefix.
38 39 40 |
# File 'lib/intacctrb.rb', line 38 def vendor_prefix @vendor_prefix end |
#xml_password ⇒ Object
Returns the value of attribute xml_password.
38 39 40 |
# File 'lib/intacctrb.rb', line 38 def xml_password @xml_password end |
#xml_sender_id ⇒ Object
Returns the value of attribute xml_sender_id.
38 39 40 |
# File 'lib/intacctrb.rb', line 38 def xml_sender_id @xml_sender_id end |
Class Method Details
.logger ⇒ Object
4 5 6 |
# File 'lib/intacctrb/logger.rb', line 4 def self.logger @@logger ||= defined?(Rails) ? Rails.logger : Logger.new(STDOUT) end |
.logger=(logger) ⇒ Object
8 9 10 |
# File 'lib/intacctrb/logger.rb', line 8 def self.logger=(logger) @@logger = logger end |