Changeset 9180
- Timestamp:
- 04/01/08 02:09:52 (1 month ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/lib/initializer.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r9167 r9180 1 1 *SVN* 2 3 * Add Rails.logger, Rails.root, Rails.env and Rails.cache shortcuts for RAILS_* constants [pratik] 2 4 3 5 * Allow files in plugins to be reloaded like the rest of the application. [rick] trunk/railties/lib/initializer.rb
r9167 r9180 21 21 def self.configuration=(configuration) 22 22 @@configuration = configuration 23 end 24 25 def self.logger 26 RAILS_DEFAULT_LOGGER 27 end 28 29 def self.root 30 RAILS_ROOT 31 end 32 33 def self.env 34 RAILS_ENV 35 end 36 37 def self.cache 38 RAILS_CACHE 23 39 end 24 40