19 lines
443 B
Ruby
19 lines
443 B
Ruby
module MongoMapper
|
|
class ClearDevMemory
|
|
def initialize(app)
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
if Rails.configuration.cache_classes
|
|
else
|
|
MongoMapper::Document.descendants.each do |m|
|
|
m.descendants.clear if m.respond_to? :descendants
|
|
end
|
|
MongoMapper::Document.descendants.clear
|
|
MongoMapper::EmbeddedDocument.descendants.clear
|
|
end
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|