I have a helper that I am using to generate a form. Parameters that are used to generate the form's fields are passed into the helper. I can't figure out how to use the block outside of a template.
For example:
def generate_form(path, fields)
form_tag(path, method: :get) do
# what do I do in here?
end
end
When I render partials within the block, nothing appears in the rendered web page. If I join together a bunch of tags (field_tag, text_field_tag, etc.), then raw html appears on the page.
I am using Rails 3.1.0