module Geodata

Constants

VERSION

Public Class Methods

const_missing(constant_name) click to toggle source
# File lib/geodata.rb, line 9
def self.const_missing(constant_name)
  Geodata::Queries.const_get(constant_name).new
rescue
  raise Errors::Constant, "Constant #{constant_name} does not exist."
end