Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to upgrade my app to mongoid version 3. In my dragonfly initializer I used to have this:

app.configure_with(:imagemagick)
app.configure_with(:rails) do |c|
  c.datastore = Dragonfly::DataStorage::MongoDataStore.new :db => Mongoid.database
end

Mongoid.database no longer exists. What is the best way to configure the connection for dragonfly now?

share|improve this question

1 Answer

up vote 0 down vote accepted

I use Mongoid.load!("config/mongoid.yml", :development) instead of Mongoid.database. And it's works for me.

share|improve this answer
Awesome. This is exactly what I was looking for. The API changed, and I wasn't sure where to look. – demersus Sep 17 '12 at 21:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.