Я пытаюсь сделать что-то подобное.
select :model, :attribute, :style => "some:style;"
Добавьте style к select helper в рельсах, но это не работает.
style
select helper
Из документации :
select(object, method, choices, options = {}, html_options = {})
Итак, ваш :style хеш должен быть 5-м параметром. Например:
:style
select(:model, :attribute, @options_for_select, { }, { :style => 'some: style' }