Class: Geocoder::Lookup::Geoip2

Inherits:
Base
  • Object
show all
Defined in:
lib/geocoder/lookups/geoip2.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#cache, #handle, #map_link_url, #query_url, #search, #supported_protocols

Constructor Details

#initializeGeoip2

Returns a new instance of Geoip2.



9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/geocoder/lookups/geoip2.rb', line 9

def initialize
  unless configuration[:file].nil?
    begin
      @gem_name = configuration[:lib] || 'maxminddb'
      require @gem_name
    rescue LoadError
      raise "Could not load Maxmind DB dependency. To use the GeoIP2 lookup you must add the #{@gem_name} gem to your Gemfile or have it installed in your system."
    end

    @mmdb = db_class.new(configuration[:file].to_s)
  end
  super
end

Instance Attribute Details

#gem_nameObject (readonly)

Returns the value of attribute gem_name.



7
8
9
# File 'lib/geocoder/lookups/geoip2.rb', line 7

def gem_name
  @gem_name
end

Instance Method Details

#nameObject



23
24
25
# File 'lib/geocoder/lookups/geoip2.rb', line 23

def name
  'GeoIP2'
end

#required_api_key_partsObject



27
28
29
# File 'lib/geocoder/lookups/geoip2.rb', line 27

def required_api_key_parts
  []
end