2019/common.rb

12 lines
220 B
Ruby
Raw Permalink Normal View History

2019-12-12 17:32:24 +01:00
class Input
FILE = 'input'
def initialize(directory, file = nil)
@filename = "#{directory}/#{file || FILE}"
end
def readlines
File.readlines(@filename).reject { |line| line.start_with?('#') }
end
end