Is there a way to allow users to create custom fields using
mongomapper?
I would like to be able to do: object['custom_field'] = 'test' on the
fly. That way the user could define a custom field in a input box and
the value in the input box next to it.
couchrest does this, but I'm pretty sure it's because it returns
things as a hash and not a ruby object.
see the comments here:
http://merbist.com/2009/05/17/couchdb-with-couchrest-in-5-minutes/
Or maybe should I just use the ruby mongodb driver in this instance?