Sha256: b79c30eed200cd996205c5d4c66246e1041ab86e17a1ddfd4caed0b0b5be4d24

Contents?: true

Size: 440 Bytes

Versions: 1

Compression:

Stored size: 440 Bytes

Contents

#!/usr/bin/env ruby

require 'rubygems'
require 'reckon'

begin
  options = Reckon::App.parse_opts
rescue RuntimeError => e
  puts("ERROR: #{e}")
  exit(1)
end
reckon = Reckon::App.new(options)

if options[:print_table]
  reckon.output_table
  exit
end

if !reckon.csv_parser.money_column_indices
  puts "I was unable to determine either a single or a pair of combined columns to use as the money column."
  exit
end

reckon.walk_backwards

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reckon-0.6.2 bin/reckon