Class: Clean

Inherits:
Array show all
Defined in:
lib/commands/clean.rb

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/commands/clean.rb', line 2

def update
  ['.yardoc','log','tmp','obj'].each{|dir| 
    CLEAN.include(dir) if File.exists?(dir)
  }  
  
       CLEAN.include('*.{suo,sdf}')

       #add '<%Rake::Task[:clean].reenable%>'

       add '<%Rake::Task[:clean].invoke%>'
end