instance method
release_unload_lock!
Ruby on Rails 5.2.8.1
Since v5.2.8.1Signature
release_unload_lock!()
Release the unload lock if it has been previously obtained
Source
# File activesupport/lib/active_support/reloader.rb, line 107
def release_unload_lock!
if @locked
@locked = false
ActiveSupport::Dependencies.interlock.done_unloading
end
end
Defined in activesupport/lib/active_support/reloader.rb line 107
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Reloader