You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 13, 2024. It is now read-only.
namespace :show do
desc "Show cities in US"
task :cities => :environment do
Cities.data_path = "lib/tasks/cities"
puts Cities.data_path
cities = Cities.cities_in_country('US')
puts cities
end
end