diff options
author | Xavier Noria <fxn@hashref.com> | 2008-05-07 02:16:19 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2008-05-07 02:16:19 +0200 |
commit | f168db4cc13e40be28c425a34bd97470c398f1c9 (patch) | |
tree | b9f71c8a6b938ad0ed32f4ae10c25dd49a8f2cc8 | |
parent | 8031ba1aeeea0fe79899c7b4d3ca3ef06d2b1281 (diff) | |
download | rails-f168db4cc13e40be28c425a34bd97470c398f1c9.tar.gz rails-f168db4cc13e40be28c425a34bd97470c398f1c9.tar.bz2 rails-f168db4cc13e40be28c425a34bd97470c398f1c9.zip |
revised a few of filenames
-rw-r--r-- | railties/lib/initializer.rb | 8 |
1 files changed, 5 insertions, 3 deletions
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 <tt>reload_plugins?</tt> is false, add this to your plugin's init.rb to make it reloadable: + # If <tt>reload_plugins?</tt> is false, add this to your plugin's <tt>init.rb</tt> + # to make it reloadable: # # Dependencies.load_once_paths.delete lib_path # - # If <tt>reload_plugins?</tt> is true, add this to your plugin's init.rb to only load it once: + # If <tt>reload_plugins?</tt> is true, add this to your plugin's <tt>init.rb</tt> + # 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 (<tt>development</tt>.rb, etc.). By # default the file is at <tt>config/environments/#{environment}.rb</tt>. def environment_path "#{root_path}/config/environments/#{environment}.rb" |