I was reading through this asciicast (readable version of railscasts) about formtastic and ran into this:
We can customise fields by using the
same options that we pass to Rails’
form helper methods. This means that
we can pass born_on a :start_year and
use an :include_blank => false
parameter in our category to remove
the blank option.
Where do I find documentation for options like :start_year and :include_blank? Along with documentation for other form helper related options that are “built in” to ralis?
Here is the documentation for
start_yearandinclude_blankfrom thedate_selecthelper.