Class: Riddler::Elements::Text
Instance Attribute Summary
#context, #definition
Class Method Summary
collapse
Instance Method Summary
collapse
for, inherited, #initialize, subclasses
#include?, #include_predicate
Class Method Details
.type ⇒ Object
4
5
6
|
# File 'lib/riddler/elements/text.rb', line 4
def self.type
"text"
end
|
Instance Method Details
#text ⇒ Object
8
9
10
|
# File 'lib/riddler/elements/text.rb', line 8
def text
context.render definition["text"]
end
|
#to_hash ⇒ Object
12
13
14
|
# File 'lib/riddler/elements/text.rb', line 12
def to_hash
super.merge text: text
end
|