Skip to content

Instantly share code, notes, and snippets.

@bastos
Created April 24, 2012 19:48
Show Gist options
  • Save bastos/2483089 to your computer and use it in GitHub Desktop.
Save bastos/2483089 to your computer and use it in GitHub Desktop.
# Debits and credits are a system of notation used in bookkeeping to determine how to record any financial transaction.
class Person
attr_accessor :bookkeeping
end
class BookKeeping
attr_accessor :transactions
end
class Transaction
end
class Debit < Transaction
end
class Credit < Transaction
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment