class LedgerTillerExport::RegexpRule

Public Instance Methods

account_for_row(row) click to toggle source
# File lib/ledger_tiller_export.rb, line 56
def account_for_row(row)
  if match.match(row.description)
    return account
  end

  nil
end