A simple MongoDB adapter.
Forks and pull requests with fixes and improvements are really well welcome! This is pretty much beta and not ready for production.
Documentation coming soon!
class MyTestClass
include SimpleMongo::Model
field :test
validations do
validates_custom :test do |field|
field == "something"
end
end
before_save do
self.test = 'pablo'
end
end
connection = SimpleMongo::Connection.new(:database => 'test')
model = MyTestClass.new(:test => 'yay')
model.save
puts model.test
Pablo Merino
[email protected]
License: MIT