Sha256: 1992827f3628c82241f547386459d737bd705211a19a5058941dd92f3451cf33
Contents?: true
Size: 256 Bytes
Versions: 7
Compression:
Stored size: 256 Bytes
Contents
module Howitzer module LoggerHelper def read_file(file) path = File.expand_path(file, __FILE__) IO.read(path) end def clear_file(file) path = File.expand_path(file, __FILE__) File.open(path, 'w') {} end end end
Version data entries
7 entries across 7 versions & 1 rubygems