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
<code/>and<pre/>for code samples.