Class: Twitter::Configuration

Inherits:
Base
  • Object
show all
Defined in:
lib/twitter/configuration.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

#[], attr_reader, fetch, fetch_or_new, from_response, identity_map, #initialize, store, #update

Constructor Details

This class inherits a constructor from Twitter::Base

Instance Attribute Details

#characters_reserved_per_mediaObject (readonly)

Returns the value of attribute characters_reserved_per_media.



6
7
8
# File 'lib/twitter/configuration.rb', line 6

def characters_reserved_per_media
  @characters_reserved_per_media
end

#max_media_per_uploadObject (readonly)

Returns the value of attribute max_media_per_upload.



6
7
8
# File 'lib/twitter/configuration.rb', line 6

def max_media_per_upload
  @max_media_per_upload
end

#non_username_pathsObject (readonly)

Returns the value of attribute non_username_paths.



6
7
8
# File 'lib/twitter/configuration.rb', line 6

def non_username_paths
  @non_username_paths
end

#photo_size_limitObject (readonly)

Returns the value of attribute photo_size_limit.



6
7
8
# File 'lib/twitter/configuration.rb', line 6

def photo_size_limit
  @photo_size_limit
end

#short_url_lengthObject (readonly)

Returns the value of attribute short_url_length.



6
7
8
# File 'lib/twitter/configuration.rb', line 6

def short_url_length
  @short_url_length
end

#short_url_length_httpsObject (readonly)

Returns the value of attribute short_url_length_https.



6
7
8
# File 'lib/twitter/configuration.rb', line 6

def short_url_length_https
  @short_url_length_https
end

Instance Method Details

#photo_sizesArray<Twitter::Size>

Returns an array of photo sizes

Returns:



12
13
14
15
16
17
# File 'lib/twitter/configuration.rb', line 12

def photo_sizes
  @photo_sizes ||= Array(@attrs[:photo_sizes]).inject({}) do |object, (key, value)|
    object[key] = Twitter::Size.fetch_or_new(value)
    object
  end
end