How can I pass Ruby object to another action?

How about saving the object in a session value?

session[:my_object] = my_object/@my_object

The next action could just retrieve it easily:

my_object/@my_object = session[:my_object]

Pepe

What about initializing the object with the params values?

Something like

foo = MyObject.new(params[:foo])