Below is code extract from my file /home/divya/climb/project1/app/views/cities/new.html.erb where line #5 raised this error:
undefined method `map' for nil:NilClass
Extracted source (around line #5):
2: <%= form_for(@city) do |f| %>
3: <%= f.label :country_id %><br />
4:
5: <%= collection_select(:city, :country_id, @countries, :id, :country_name, {:prompt => false}) %>
6: <%= render 'form' %>
7:
8: <%= link_to 'Back', cities_path %>
Rails.root: /home/divya/climb/project