Sha256: c843d197666485d1ba43c75207da29222216b933a867b98af7880414ea95b770

Contents?: true

Size: 396 Bytes

Versions: 27

Compression:

Stored size: 396 Bytes

Contents

module OEmbed
  class Response
    # A Response used for representing rich HTML content that does not fall under
    # one of the other Response categories.
    class Rich < 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

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
ruby-oembed-0.8.10 lib/oembed/response/rich.rb
ruby-oembed-0.8.9 lib/oembed/response/rich.rb
ruby-oembed-0.8.8 lib/oembed/response/rich.rb
ruby-oembed-0.8.7 lib/oembed/response/rich.rb
ruby-oembed-0.8.5 lib/oembed/response/rich.rb
ruby-oembed-0.8.3 lib/oembed/response/rich.rb
ruby-oembed-0.8.1 lib/oembed/response/rich.rb