Ticket #5014: server.rb.diff
| File server.rb.diff, 0.5 kB (added by elliot@townx.org, 2 years ago) |
|---|
-
railties/lib/commands/server.rb
old new 26 26 puts "=> Booting lighttpd (use 'script/server webrick' to force WEBrick)" 27 27 end 28 28 29 FileUtils.mkdir_p(%w( tmp/sessions tmp/cache tmp/sockets )) 29 ['sessions', 'cache', 'sockets'].each { |dir_to_make| FileUtils.mkdir_p(File.join(RAILS_ROOT, 'tmp', dir_to_make)) } 30 30 require "commands/servers/#{server}"