File: oembed.rb

package info (click to toggle)
ruby-twitter 7.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,840 kB
  • sloc: ruby: 10,919; makefile: 6
file content (12 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
require 'twitter/base'

module Twitter
  class OEmbed < Twitter::Base
    # @return [Integer]
    attr_reader :height, :width
    # @return [String]
    attr_reader :author_name, :cache_age, :html, :provider_name, :type,
                :version
    uri_attr_reader :author_uri, :provider_uri, :uri
  end
end