Methods
Attributes
| [R] | content_type | |
| [R] | height | |
| [R] | url | |
| [R] | width |
Class Public methods
from_node(node) Link
Source: show
# File actiontext/lib/action_text/attachables/remote_image.rb, line 9 def from_node(node) if node["url"] && content_type_is_image?(node["content-type"]) new(attributes_from_node(node)) end end
new(attributes = {}) Link
Source: show
# File actiontext/lib/action_text/attachables/remote_image.rb, line 30 def initialize(attributes = {}) @url = attributes[:url] @content_type = attributes[:content_type] @width = attributes[:width] @height = attributes[:height] end