Sha256: ab173b3ba5713f60984b193e532347680bdb0cfb8a8af2af4a87b184ca042f93
Contents?: true
Size: 422 Bytes
Versions: 1
Compression:
Stored size: 422 Bytes
Contents
# frozen_string_literal: true module RERB # Intermediate Representation Nodes module IR # Generic HTML Content Content = Data.define(:content) # Ruby expression. Analogous to <%= %> RubyExpr = Data.define(:content) # Ruby statement. Analogous to <% %> RubyStatement = Data.define(:content) # Create DOM Node Create = Data.define(:el_name, :content) Ignore = Data.define end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rerb-0.1.1 | lib/rerb/ir.rb |