A set of mutually-exclusive attributes need to be selected, thus via a radio_button.
<% @finitures.each do |finiture| %>
<%= f.radio_button :finitura_stampa, finiture %> <%= finiture.nome %><br />
<% end %>
However, NIL is an allowed value.
One way to handle this is to create a dummy record that tries to be invisible, but that's not very clean. A better way would be to have a radio button with a label 'None' that sets the attribute to NIL.
I have not found a way to do this.