diff --git a/railties/lib/initializer.rb b/railties/lib/initializer.rb index 6db96f0158..0ef0797e27 100644 --- a/railties/lib/initializer.rb +++ b/railties/lib/initializer.rb @@ -572,11 +572,13 @@ module Rails attr_accessor :plugin_loader # Enables or disables plugin reloading. You can get around this setting per plugin. - # If reload_plugins? is false, add this to your plugin's init.rb to make it reloadable: + # If reload_plugins? is false, add this to your plugin's init.rb + # to make it reloadable: # # Dependencies.load_once_paths.delete lib_path # - # If reload_plugins? is true, add this to your plugin's init.rb to only load it once: + # If reload_plugins? is true, add this to your plugin's init.rb + # to only load it once: # # Dependencies.load_once_paths << lib_path # @@ -676,7 +678,7 @@ module Rails YAML::load(ERB.new(IO.read(database_configuration_file)).result) end - # The path to the current environment's file (development.rb, etc.). By + # The path to the current environment's file (development.rb, etc.). By # default the file is at config/environments/#{environment}.rb. def environment_path "#{root_path}/config/environments/#{environment}.rb"