mongo_session_store icon indicating copy to clipboard operation
mongo_session_store copied to clipboard

Rails session store class implemented for MongoMapper

Results 3 mongo_session_store issues
Sort by recently updated
recently updated
newest added

Hello! I fixed BSON class names to avoid warnings because the old names are deprecated. BSON::ObjectID -> BSON::ObjectId BSON::InvalidObjectID -> BSON::InvalidObjectId Can you accept the pull request and publish the...

I get an exception using this gem with mongoid on Rails 3 actionpack (3.0.10) lib/action_dispatch/middleware/session/abstract_store.rb:252:in `destroy' actionpack (3.0.10) lib/action_dispatch/middleware/session/abstract_store.rb:105:in`destroy' Which if you look at: https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb Can see why def destroy_session(env,...

persistence.rb:22:in `database': uninitialized class variable @@database_name in MongoMapper::Connection (NameError) Seems to be caused by a race in Rails startup - mongo_session_store is getting loaded before @@database_name is set, and the...