public Method

Dependencies.remove_unloadable_constants!

Remove the constants that have been autoloaded, and those that have been marked for unloading.

Source Code

# File active_support/dependencies.rb, line 272
def remove_unloadable_constants!
  autoloaded_constants.each { |const| remove_constant const }
  autoloaded_constants.clear
  explicitly_unloadable_constants.each { |const| remove_constant const }
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.