Class: Curlybars::Node::Text

Inherits:
Struct
  • Object
show all
Defined in:
lib/curlybars/node/text.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#textObject

Returns the value of attribute text

Returns:

  • (Object)

    the current value of text



3
4
5
# File 'lib/curlybars/node/text.rb', line 3

def text
  @text
end

Instance Method Details

#cache_keyObject



16
17
18
19
20
21
# File 'lib/curlybars/node/text.rb', line 16

def cache_key
  [
    text.to_s,
    self.class.name
  ].join("/")
end

#compileObject



4
5
6
7
8
9
10
# File 'lib/curlybars/node/text.rb', line 4

def compile
  # NOTE: the following is a heredoc string, representing the ruby code fragment
  # outputted by this node.
  <<-RUBY
    buffer.concat(#{text.inspect}.html_safe)
  RUBY
end

#validate(branches) ⇒ Object



12
13
14
# File 'lib/curlybars/node/text.rb', line 12

def validate(branches)
  # Nothing to validate here.
end