我正在尝试将我的应用程序升级到 mongoid 版本 3。在我的蜻蜓初始化程序中,我曾经有这个:
app.configure_with(:imagemagick)
app.configure_with(:rails) do |c|
c.datastore = Dragonfly::DataStorage::MongoDataStore.new :db => Mongoid.database
end
Mongoid.database 不再存在。现在为蜻蜓配置连接的最佳方法是什么?
我正在尝试将我的应用程序升级到 mongoid 版本 3。在我的蜻蜓初始化程序中,我曾经有这个:
app.configure_with(:imagemagick)
app.configure_with(:rails) do |c|
c.datastore = Dragonfly::DataStorage::MongoDataStore.new :db => Mongoid.database
end
Mongoid.database 不再存在。现在为蜻蜓配置连接的最佳方法是什么?