Method: ActiveSupport::Reloader#release_unload_lock!

Defined in:
activesupport/lib/active_support/reloader.rb

#release_unload_lock!Object

Release the unload lock if it has been previously obtained



114
115
116
117
118
119
# File 'activesupport/lib/active_support/reloader.rb', line 114

def release_unload_lock!
  if @locked
    @locked = false
    ActiveSupport::Dependencies.interlock.done_unloading
  end
end