Sha256: c42a3f1572da51558695528bc628dfaa1987c967bba6784c4e481abbd11d4d33
Contents?: true
Size: 484 Bytes
Versions: 22
Compression:
Stored size: 484 Bytes
Contents
module Lono class Extensions include Dsl include Lono::Template::Evaluate def initialize(template_path) @template_path = template_path end def evaluate evaluate_template_path(@template_path) # handle extend_with end # The extend_with methods are used in file as the normal DSL evaluation. # We use method_missing so we dont have to redefine all the normal methods of the DSL. def method_missing(name, *args, &block); end end end
Version data entries
22 entries across 22 versions & 1 rubygems