Class: Tumblr::Post::Video

Inherits:
Tumblr::Post show all
Defined in:
lib/tumblr/post/video.rb

Constant Summary

Constants inherited from Tumblr::Post

BASIC_PARAMS, POST_PARAMS

Instance Attribute Summary

Attributes inherited from Tumblr::Post

#date, #format, #generator, #group, #post_id, #reblog_key, #slug, #state, #type

Instance Method Summary collapse

Methods inherited from Tumblr::Post

#add_to_queue, #delete, #edit, #like, parameters, #private=, #private?, #publish_now, #publish_on, #save_as_draft, #send_to_twitter, #tags, #to_h, #to_s, #to_yaml, #unlike, #write

Constructor Details

#initialize(video, post_id = nil) ⇒ Video

Returns a new instance of Video.



7
8
9
10
11
# File 'lib/tumblr/post/video.rb', line 7

def initialize(video, post_id = nil)
  super post_id
  self.embed = video
  @type = :video
end