Session trouble

Hi Jeremy, there's no attribute or attr_writer on the session called

delivery_location=

If you're trying to simply save an object into a session, you can do the following:

session[:order] = o

Now, you can pull it out by doing the following:

order = session[:order]

If you require further information, I would recommend referencing the relevant section in AWDwRv2.

Good luck,

-Conrad