Class: ActionText::Attachables::ContentAttachment
- Inherits:
-
Object
- Object
- ActionText::Attachables::ContentAttachment
- Includes:
- ActiveModel::Model
- Defined in:
- lib/action_text/attachables/content_attachment.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#content ⇒ Object
Returns the value of attribute content.
-
#content_type ⇒ Object
Returns the value of attribute content_type.
Class Method Summary collapse
Instance Method Summary collapse
- #attachable_plain_text_representation(caption) ⇒ Object
- #to_html ⇒ Object
- #to_partial_path ⇒ Object
- #to_s ⇒ Object
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content.
15 16 17 |
# File 'lib/action_text/attachables/content_attachment.rb', line 15 def content @content end |
#content_type ⇒ Object
Returns the value of attribute content_type.
15 16 17 |
# File 'lib/action_text/attachables/content_attachment.rb', line 15 def content_type @content_type end |
Class Method Details
.from_node(node) ⇒ Object
10 11 12 13 |
# File 'lib/action_text/attachables/content_attachment.rb', line 10 def self.from_node(node) = new(content_type: node["content-type"], content: node["content"]) if .valid? end |
Instance Method Details
#attachable_plain_text_representation(caption) ⇒ Object
20 21 22 |
# File 'lib/action_text/attachables/content_attachment.rb', line 20 def attachable_plain_text_representation() content_instance.fragment.source end |
#to_html ⇒ Object
24 25 26 |
# File 'lib/action_text/attachables/content_attachment.rb', line 24 def to_html @to_html ||= content_instance.render(content_instance) end |
#to_partial_path ⇒ Object
32 33 34 |
# File 'lib/action_text/attachables/content_attachment.rb', line 32 def to_partial_path "action_text/attachables/content_attachment" end |
#to_s ⇒ Object
28 29 30 |
# File 'lib/action_text/attachables/content_attachment.rb', line 28 def to_s to_html end |