File.expand_path in config/environment.rb would fail when dealing with symlinked public directories [mjobin].

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@208 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2004-12-18 00:47:30 +00:00
parent 604a09462e
commit bb9975fbc7
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
*SVN*
* File.expand_path in config/environment.rb would fail when dealing with symlinked public directories [mjobin].
*0.9.1*
* Upgraded to Action Pack 1.0.1 for important bug fix

View File

@ -1,4 +1,4 @@
RAILS_ROOT = File.expand_path(File.dirname(__FILE__) + "/../")
RAILS_ROOT = File.dirname(__FILE__) + "/../"
RAILS_ENV = ENV['RAILS_ENV'] || 'development'

View File

@ -1,4 +1,4 @@
RAILS_ROOT = File.expand_path(File.dirname(__FILE__) + "/../")
RAILS_ROOT = File.dirname(__FILE__) + "/../"
RAILS_ENV = ENV['RAILS_ENV'] || 'development'