lib/oembed/response/video.rb in ruby-oembed-0.7.6 vs lib/oembed/response/video.rb in ruby-oembed-0.8.1

- old
+ new

@@ -1,6 +1,16 @@ module OEmbed class Response + # A Response used for representing playable videos. class Video < self + + private + + # See {section 2.3.4.1 of the oEmbed spec}[http://oembed.com/#section2.3] + def must_override + %w{ + html width height + } + super + end end end end \ No newline at end of file