I am creating a scaffold -
rails g scaffold Contact email:string email_provider:string
but I want the email provider to be a drop down (with gmail/yahoo/msn as options) and not a text field. How can I do this ?
Thanks
Edit - I see this code
<%= f.select :email_provider, options_for_select(%w[Gmail Yahoo MSN]) %>
is working fine for me, so just wondering what is the difference in using Select and collection_select as mentioned in below answers ?