i’m assuming you have a list of degrees which the user can check.
upon submitting the form, you want params[:obj][:degree] to be
an array with values equal to the checked degrees. if that’s right
then you need to use check_box_tag
<% [‘degree1’, ‘degree2’, ‘degree3’].each do |degree| %>
<%= check_box_tag ‘obj[degree][]’, degree %>
<% end %>