aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails/tasks/tmp.rake
blob: c74a17a0caeb8a8c869b039f4ce0577fe26e68f5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                 

                                                                                              
 
                           

                             
                                   
 
                                   
 
                                                             
                       
 
                     
                                                          
                  
                                                  
       

     
                       
                                            
                  
                                                 
       
     

                    
                                         
                  
                                              

       
   
namespace :tmp do
  desc "Clear cache and socket files from tmp/ (narrow w/ tmp:cache:clear, tmp:sockets:clear)"
  task clear: ["tmp:cache:clear", "tmp:sockets:clear"]

  tmp_dirs = [ 'tmp/cache',
               'tmp/sockets',
               'tmp/pids',
               'tmp/cache/assets' ]

  tmp_dirs.each { |d| directory d }

  desc "Creates tmp directories for cache, sockets, and pids"
  task create: tmp_dirs

  namespace :cache do
    # desc "Clears all files and directories in tmp/cache"
    task :clear do
      rm_rf Dir['tmp/cache/[^.]*'], verbose: false
    end
  end

  namespace :sockets do
    # desc "Clears all files in tmp/sockets"
    task :clear do
      rm Dir['tmp/sockets/[^.]*'], verbose: false
    end
  end

  namespace :pids do
    # desc "Clears all files in tmp/pids"
    task :clear do
      rm Dir['tmp/pids/[^.]*'], verbose: false
    end
  end
end