I would like to know how I can manually enter the options of a select, I have been using the following:
<%= f.collection_select :establecimiento_id, Establecimiento.order(:nombre), :id, :nombre, include_blank: true %>
but that is useful to select data from a table, I want to create one with the months, will it be necessary to create a table with the months or is there a way to enter in the code what I want?