1
0
Fork 0
template_engine_comparison/lib/workbench/wrappers/base.rb

12 lines
159 B
Ruby

module Workbench
module Wrappers
class Base
attr_reader :tpl
def initialize path
@tpl = File.read(path)
end
end
end
end