10 lines
122 B
Ruby
10 lines
122 B
Ruby
|
module Wrappers
|
||
|
class Base
|
||
|
attr_reader :tpl
|
||
|
|
||
|
def initialize path
|
||
|
@tpl = File.read(path)
|
||
|
end
|
||
|
end
|
||
|
end
|