crftr/double_double

View on GitHub
lib/double_double/liability.rb

Summary

Maintainability
A
0 mins
Test Coverage
module DoubleDouble
  # The Liability class is an account type used to represents debts owed to outsiders.
  #
  # === Normal Balance
  # The normal balance on Liability accounts is a *Credit*.
  #
  # @see http://en.wikipedia.org/wiki/Liability_(financial_accounting) Liability
  #
  class Liability < NormalCreditAccount
  end
end