geo-regions

Simple ruby gem to create form lists with cities, countries and states

View on GitHub

geo-regions Ruby Gem

Gem License: MIT Build CodeQL Gem Version

A very simple ruby gem to get a list of states in a country. Also, you can get a list of cities in a state, and a list of all countries of the world.

How to use it?

gem "geo-regions", "~> 1.0.0"
source "https://rubygems.pkg.github.com/dcotecnologia" do
  gem "geo-regions", "~> 1.0.0"
end
gem "geo-regions", github: "dcotecnologia/geo-regions", tag: "v1.0.0"

By default, the gem uses the default locale of the i18n library. You can set a custom locale setting a custom configuration:

GR.configure do |config|
  config.locale = :en
end
GR::City.all
GR:City.find(state: "SP", country: "BR", name: "io Cl")

# expected response
=>
[<GR::City:0x00007f25991fe328
  @name="Rio Claro",
  @positions=GR::Geolite::CityPositions,
  @state=
    <GR::State:0x00007f25991fe3a0
      @code="SP",
      @country=
      #<GR::Country:0x00007f25991fe418
        @code="BR",
        @continent=
        #<GR::Continent:0x00007f25991fe468
          @code="SA",
          @name="\"SOUTH AMERICA\"">,
        @is_in_european_union=0,
        @name="Brazil">,
      @name="Sao Paulo">,
  @time_zone="America/Sao_Paulo">]

For more samples how to use the gem, check the HOW_TO_USE.md file.

If you want to edit the source code and/or contribuct to the gem, please, check the BUILDING.md and CONTRIBUTING.md files.

Problems?

Please do not directly email any committers with questions or problems. A community is best served when discussions are held in public.

Searching the issues for your problem is also a good idea.

Contributing

License

Please see LICENSE for licensing details.

MaxMind databases

Database License: CC BY-SA 4.0

This product includes GeoLite2 data created by MaxMind, available from https://www.maxmind.com. You can find the License of the databases here.

Security Policy

Take a look at our security policy to learn more about versions supported with security updates and how to report bugs and vulnerabilities.

Creators and maintainers