TeX and CSS tweaks.
Sync with latest Instiki Trunk (Updates Rails to 1.2.2)
This commit is contained in:
parent
0ac586ee25
commit
c358389f25
443 changed files with 24218 additions and 9823 deletions
9
vendor/rails/railties/lib/tasks/tmp.rake
vendored
9
vendor/rails/railties/lib/tasks/tmp.rake
vendored
|
@ -4,7 +4,7 @@ namespace :tmp do
|
|||
|
||||
desc "Creates tmp directories for sessions, cache, and sockets"
|
||||
task :create do
|
||||
FileUtils.mkdir_p(%w( tmp/sessions tmp/cache tmp/sockets ))
|
||||
FileUtils.mkdir_p(%w( tmp/sessions tmp/cache tmp/sockets tmp/pids ))
|
||||
end
|
||||
|
||||
namespace :sessions do
|
||||
|
@ -27,4 +27,11 @@ namespace :tmp do
|
|||
FileUtils.rm(Dir['tmp/sockets/[^.]*'])
|
||||
end
|
||||
end
|
||||
|
||||
namespace :pids do
|
||||
desc "Clears all files in tmp/pids"
|
||||
task :clear do
|
||||
FileUtils.rm(Dir['tmp/pids/[^.]*'])
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue