Sha256: 401ad4e2b2e2daf732d1f9c4003e230b88f47b3305b4e318dbe56c2434761bb2

Contents?: true

Size: 439 Bytes

Versions: 2

Compression:

Stored size: 439 Bytes

Contents

#!/usr/bin/env ruby

require 'rubygems'
require 'reckon'

begin
  options = Reckon::Options.parse
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

2 entries across 2 versions & 1 rubygems

Version Path
reckon-0.7.1 bin/reckon
reckon-0.7.0 bin/reckon