12 lines
159 B
Ruby
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
|