views:

60

answers:

1

Let's say we are passing in something like :mash => true

Now inside of params I want to

takeit = params[:mash]

What class is takeit? It's not boolean of course.

Thanks for helping.

+1  A: 

It will be a string.

sepp2k