Class: Rumblr::ConversationPost
- Defined in:
- lib/rumblr/post.rb
Constant Summary
Constants inherited from Post
Instance Attribute Summary collapse
-
#conversation ⇒ Object
Returns the value of attribute conversation.
-
#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
#conversation ⇒ Object
Returns the value of attribute conversation.
76 77 78 |
# File 'lib/rumblr/post.rb', line 76 def conversation @conversation end |
#title ⇒ Object
Returns the value of attribute title.
76 77 78 |
# File 'lib/rumblr/post.rb', line 76 def title @title end |
Instance Method Details
#attribute_hash ⇒ Object
78 79 80 |
# File 'lib/rumblr/post.rb', line 78 def attribute_hash super.merge(:title => title, :conversation => conversation) end |