Sha256: 61b730ba93dd21350188fd15fa32d689b4c7b2003ce244e114b876f4d2bb5121

Contents?: true

Size: 393 Bytes

Versions: 1

Compression:

Stored size: 393 Bytes

Contents

#!/usr/bin/env ruby

require 'rubygems'
require File.dirname(__FILE__) + "/../lib/reckon"

options = Reckon::App.parse_opts
reckon = Reckon::App.new(options)

if options[:print_table]
  reckon.output_table
  exit
end

if !reckon.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.2.2 bin/reckon_local