Changeset 4426
- Timestamp:
- 06/03/06 22:22:50 (2 years ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/lib/commands/server.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r4394 r4426 1 1 *SVN* 2 3 * Create temporary dirs relative to RAILS_ROOT when running script/server #5014 [elliot@townx.org] 2 4 3 5 * Minor tweak to dispatcher to use recognize instead of recognize!, as per the new routes. [Jamis Buck] trunk/railties/lib/commands/server.rb
r4037 r4426 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}"