I want to include country selection select box in my Rails web form. How is it possible in Ruby on Rails? My form is like this
<%= form_for :User, :url => {:action => :create } do |f| %>
<div class="field">
<%= f.label :select_countries %><br />
<%= f.select(:countries, country_list) %>
</div>
<%= f.submit "Create" %>
<% end %>
What can I include in place of country_list?
It really works for country_select gem