Sha256: 2545f9b97e60e786b8c5eb027f11daec490145b1e2d530d2946ea314ac711e7c
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
require 'equalizer' require 'twitter/base' module Twitter class Place < Twitter::Base attr_reader :attributes, :country, :full_name, :name, :woeid alias woe_id woeid object_attr_reader :GeoFactory, :bounding_box object_attr_reader :Place, :contained_within alias contained? contained_within? uri_attr_reader :uri # @param other [Twitter::Place] # @return [Boolean] def eql?(other) super || instance_of?(other.class) && !woeid.nil? && other.respond_to?(:woeid) && woeid.eql?(other.woeid) end # @param other [Twitter::Place] # @return [Boolean] def ==(other) other = coerce(other) if respond_to?(:coerce, true) super || kind_of?(self.class) && !woeid.nil? && other.respond_to?(:woeid) && woeid == other.woeid 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.1.1 | lib/twitter/place.rb |