Sha256: 4d8b0b1ffaf9442a0a58026f89fb15696aec982fb154f742d06e53812dc9d5d4
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
require 'memoizable' require 'twitter/identity' module Twitter class Place < Twitter::Identity include Memoizable # @return [Hash] attr_reader :attributes # @return [String] attr_reader :country, :full_name, :name alias_method :woe_id, :id alias_method :woeid, :id object_attr_reader :GeoFactory, :bounding_box object_attr_reader :Place, :contained_within alias_method :contained?, :contained_within? uri_attr_reader :uri # Initializes a new place # # @param attrs [Hash] # @raise [ArgumentError] Error raised when supplied argument is missing a :woeid key. # @return [Twitter::Place] def initialize(attrs = {}) attrs[:id] ||= attrs.fetch(:woeid) super end # @return [String] def country_code @attrs[:country_code] || @attrs[:countryCode] end memoize :country_code # @return [Integer] def parent_id @attrs[:parentid] end memoize :parent_id # @return [String] def place_type @attrs[:place_type] || @attrs[:placeType] && @attrs[:placeType][:name] end memoize :place_type end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
twitter-5.15.0 | lib/twitter/place.rb |