mirror of https://github.com/rails/rails
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:
parent
604a09462e
commit
bb9975fbc7
|
@ -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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
RAILS_ROOT = File.expand_path(File.dirname(__FILE__) + "/../")
|
||||
RAILS_ROOT = File.dirname(__FILE__) + "/../"
|
||||
RAILS_ENV = ENV['RAILS_ENV'] || 'development'
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
RAILS_ROOT = File.expand_path(File.dirname(__FILE__) + "/../")
|
||||
RAILS_ROOT = File.dirname(__FILE__) + "/../"
|
||||
RAILS_ENV = ENV['RAILS_ENV'] || 'development'
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue