Class: Rumblr::VideoPost
Constant Summary
Constants inherited from Post
Instance Attribute Summary collapse
-
#caption ⇒ Object
Returns the value of attribute caption.
-
#data ⇒ Object
Returns the value of attribute data.
-
#embed ⇒ Object
Returns the value of attribute embed.
-
#title ⇒ Object
Returns the value of attribute title.
Attributes inherited from Post
#date, #date_gmt, #id, #private, #tags, #tumblelog, #type, #unix_timestamp, #url
Instance Method Summary collapse
Methods inherited from Post
#initialize, #private?, #public?
Methods inherited from Resource
Constructor Details
This class inherits a constructor from Rumblr::Post
Instance Attribute Details
#caption ⇒ Object
Returns the value of attribute caption.
85 86 87 |
# File 'lib/rumblr/post.rb', line 85 def @caption end |
#data ⇒ Object
Returns the value of attribute data.
85 86 87 |
# File 'lib/rumblr/post.rb', line 85 def data @data end |
#embed ⇒ Object
Returns the value of attribute embed.
85 86 87 |
# File 'lib/rumblr/post.rb', line 85 def @embed end |
#title ⇒ Object
Returns the value of attribute title.
85 86 87 |
# File 'lib/rumblr/post.rb', line 85 def title @title end |
Instance Method Details
#attribute_hash ⇒ Object
87 88 89 |
# File 'lib/rumblr/post.rb', line 87 def attribute_hash super.merge(:embed => , :data => data, :title => title, :caption => ) end |