Sha256: 16e5abb9be1ab79065c0e59319d6591a8e1bb00b2a4caa19185ed3f121c13bd3
Contents?: true
Size: 270 Bytes
Versions: 15
Compression:
Stored size: 270 Bytes
Contents
# encoding: utf-8 module LocalPac class TemplateFile attr_reader :path def initialize(path) @path = ::File.expand_path(path) end def name ::File.basename(path, '.*').to_sym end def read ::File.read(path) end end end
Version data entries
15 entries across 15 versions & 1 rubygems