class Twitter::GeoFactory

Public Class Methods

new(attrs = {}) click to toggle source

Construct a new geo object

@param attrs [Hash] @raise [IndexError] Error raised when supplied argument is missing a :type key. @return [Twitter::Geo]

Calls superclass method Twitter::Factory::new
# File lib/twitter/geo_factory.rb, line 13
def new(attrs = {})
  super(:type, Geo, attrs)
end