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 has been archived by the owner on Feb 13, 2024. It is now read-only.
guys yoiu have a major issue in lib/cities.rb
The error popsup when i do cities = Cities.cities_in_country('FR')
/cities-0.3.1/lib/cities.rb:30:in
has_data?': undefined method
exists?' for Dir:Class (NoMethodError)This is the method involve
def has_data?
data_path && Dir.exists?(data_path)
end
it should be
def has_data?
data_path && Dir.exist?(data_path)
end
The text was updated successfully, but these errors were encountered: