Ensure specified environment is used #18

Merged
mmacedo merged 1 commits from environment into master 2012-07-09 12:48:29 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 0435a4c17c - Show all commits

View File

@ -40,7 +40,7 @@ module Guard
rails_options << '-u' if options[:debugger] rails_options << '-u' if options[:debugger]
rails_options << options[:server] if options[:server] rails_options << options[:server] if options[:server]
%{sh -c 'cd #{Dir.pwd} && rails s #{rails_options.join(' ')} &'} %{sh -c 'cd #{Dir.pwd} && RAILS_ENV=#{options[:environment]} rails s #{rails_options.join(' ')} &'}
end end
def pid_file def pid_file