# Geolombia Geolombia is a gem that has a list of all cities and states in Colombia. ## Installation Add this line to your application's Gemfile: gem 'geolombia' And then execute: $ bundle Or install it yourself as: $ gem install geolombia ## Documentation This README is all the documentation I've written so far. ## Usage Geolombia::State.find_by_name("Antioquia") # => # Geolombia::State.find_by_name("Antioquia").cities # => Array of the 125 cities in Antioquia Geolombia::State.all # => Array of the 32 states in Colombia Geolombia::City.find_by_name("Medellín") # => # Geolombia::City.find_by_name("Medellín").state # => # Geolombia::City.all # => Array of the 1102 cities in Colombia ## Future Usage Geolombia::City.where(:name => "Medellín").first Geolombia::State.where(:name => "Antioquia").first.cities Geolombia::City.first.state ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Added some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request