module Tallyit

Constants

VERSION

Public Class Methods

add(tally, file) click to toggle source
# File lib/tallyit.rb, line 7
def self.add(tally, file)
  Tallyit::AddTally.do(tally, file)
end
delete(file, lineno) click to toggle source
# File lib/tallyit.rb, line 11
def self.delete(file, lineno)
  Tallyit::DeleteTally.do(file, lineno.to_i)
end
stat(file, format) click to toggle source
# File lib/tallyit.rb, line 15
def self.stat(file, format)
  Tallyit::StatTally.do(file, format.to_sym)
end