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

10 lines
122 B
Ruby

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