Sha256: 85234fc5b8c76151bf35be08917c2e2fd85068ba7815cc16f3215b77ef7bb6df
Contents?: true
Size: 432 Bytes
Versions: 23
Compression:
Stored size: 432 Bytes
Contents
module Hobo::Dryml::Parser class Element < REXML::Element def initialize(*args) super @elements = Hobo::Dryml::Parser::Elements.new(self) end def dryml_name expanded_name.sub(/:.*/, "") end attr_accessor :start_tag_source, :source_offset attr_writer :has_end_tag def has_end_tag? @has_end_tag end def parameter_tag? expanded_name =~ /:$/ end end end
Version data entries
23 entries across 23 versions & 1 rubygems