No commit activity in last 3 years
No release in over 3 years
In goes a hash, out comes hidden fields. Great for preserving Rails parameters without abusing the session.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

>= 1.2
 Project Readme

HashToHiddenFields Build Status

Sometimes in your Rails app you want a user to begin an action, log in, then complete the action. You smash their params into the session, let the user log in, then pull their params out of the session when the login is successful. END SESSION STORE ABUSE! A better way is to have the login form resubmit the params.

Add this to your Gemfile:

gem "hash_to_hidden_fields"

Filter the params you want to save and turn them into hidden fields in your form:

<%= hash_to_hidden_fields(@params_to_save) %>

When the form is submitted, all the old params will come through! Nested arrays and nested hashes are all preserved.

Help make it better!

Find a problem? Open an issue. Or, even better, code it yourself and send a pull request:

# fork it on github, then clone:
git clone git@github.com:your_username/hash_to_hidden_fields.git
bundle install
rspec
# hack away
git push
# then make a pull request

License

Public domain; no restrictions.