1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
require 'memoizable'
require 'twitter/base'
module Twitter
class Configuration < Twitter::Base
include Memoizable
# @return [Array<String>]
attr_reader :non_username_paths
# @return [Integer]
attr_reader :characters_reserved_per_media, :dm_text_character_limit,
:max_media_per_upload, :photo_size_limit, :short_url_length,
:short_url_length_https
alias short_uri_length short_url_length
alias short_uri_length_https short_url_length_https
# Returns an array of photo sizes
#
# @return [Array<Twitter::Size>]
def photo_sizes
@attrs.fetch(:photo_sizes, []).each_with_object({}) do |(key, value), object|
object[key] = Size.new(value)
end
end
memoize :photo_sizes
end
end
|