I'm not sure if there's something I did wrong here in some config files. When I run rackup -D, doing this:
File.expand_path(__FILE__)
actually returns /file.rb. And adding File.dirname somehow returns /. So now all my file loading code didn't work as it tries to look in the / directory, rather than the project directory.
This does not happen if I remove the -D option. It returns the full path /home/blablabla/stuff/file.rb
Sample code:
test.rb:
require 'rubygems' if RUBY_VERSION <= '1.8.7'
require 'sinatra'
get '/expdir' do
File.expand_path(File.dirname(__FILE__))
end
get '/exp' do
File.expand_path(__FILE__)
end
get '/file' do
__FILE__
end
get '/dirname' do
File.dirname(__FILE__)
end
get '/dir' do
Dir.entries(File.expand_path(File.dirname(__FILE__))).to_s
end
config.ru:
require 'test.rb'
run Sinatra::Application
Executed it with rackup -p 4567 and watched it return the correct values.
Executed it with rackup -p 4567 -D and watched it return the wrong values.
Dir.entries('/')and see what's there. Maybe it's the root directory, or maybe it's the root directory of your app. – tadman Nov 16 '12 at 21:04/bin,/usr,/varfolders – DumpHole Nov 16 '12 at 21:53