I found this Bootstrap Select project and its gem for Rails. I want to implement search in the select tag.
I do inspect element and here is the HTML source:
<%= f.select :food_id, options_for_select(Food.all.map{|c| [c.name, c.id]}, f.object.food_id), {}, {class: "form-control selectpicker", data: {"live-search": true}} %>