Here is a code a *helper.rb. Instead of these 3 methods (they are working perfectly)
def years_of_birth_select(form)
form.select :year_of_birth, (1..31).to_a
end
def months_of_birth_select(form)
form.select :month_of_birth, months
end
def days_of_birth_select(form)
form.select :day_of_birth, years
end
I tried to call only one method
def date_of_birth_select(form)
form.select :day_of_birth, years
form.select :month_of_birth, months
form.select :year_of_birth, (1..31).to_a
end
and it was called as
= date_of_birth_select f
and it displayed only one select, :year_of_birth, select.
What did I do wrong and what should I do to be able to call date_of_birth_select correctly?