1
0

12 lines
159 B
Ruby
Raw Normal View History

2013-12-15 01:32:31 +07:00
module Workbench
module Wrappers
class Base
attr_reader :tpl
2013-12-15 00:47:11 +07:00
2013-12-15 01:32:31 +07:00
def initialize path
@tpl = File.read(path)
end
2013-12-15 00:47:11 +07:00
end
end
end