Doh! APpending -u flag instead of iincluding in default

This commit is contained in:
Joel Moss 2011-08-25 15:42:39 +01:00
parent 1dcbbd4d11
commit 7a81802b8c
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ module Guard
FileUtils.rm pid_file
end
end
def restart
stop
start
@ -33,11 +33,11 @@ module Guard
rails_options = [
'-e', options[:environment],
'-p', options[:port],
'-u', options[:debugger],
'--pid', pid_file
]
rails_options << '-d' if options[:daemon]
rails_options << '-u' if options[:debugger]
rails_options << options[:server] if options[:server]
%{sh -c 'cd #{Dir.pwd} && rails s #{rails_options.join(' ')} &'}