When I call Factory.attributes_for(:some_class)
I obviously get back a hash of attributes for that class.
{ :attribute_one => "hello", :attribute_two => "goodbye" }
Is there a convenient way to retrieve this attributes hash with string keys rather than symbols?
{ "attribute_one" => "hello", "attribute_two" => "goodbye" }