diff options
author | Arun Agrawal <arunagw@gmail.com> | 2013-11-01 10:39:06 +0100 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2013-11-01 13:47:23 +0100 |
commit | c10a78124c1c32f8ce3a92888863b9b258efcc06 (patch) | |
tree | c21a5710a6a5246f838a276dd7051caf2a8892b2 /railties/bin | |
parent | 026b6daa05a5712ef84b687eb742f88feb3ca886 (diff) | |
download | rails-c10a78124c1c32f8ce3a92888863b9b258efcc06.tar.gz rails-c10a78124c1c32f8ce3a92888863b9b258efcc06.tar.bz2 rails-c10a78124c1c32f8ce3a92888863b9b258efcc06.zip |
More Warnings removed for ruby trunk
Same as 4d4ff531b8807ee88a3fc46875c7e76f613956fb
Diffstat (limited to 'railties/bin')
-rwxr-xr-x | railties/bin/rails | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/bin/rails b/railties/bin/rails index b3026e8a93..c11d65a08e 100755 --- a/railties/bin/rails +++ b/railties/bin/rails @@ -2,7 +2,7 @@ git_path = File.join(File.expand_path('../../..', __FILE__), '.git') -if File.exists?(git_path) +if File.exist?(git_path) railties_path = File.expand_path('../../lib', __FILE__) $:.unshift(railties_path) end |