Class: Clobber

Inherits:
Array show all
Defined in:
lib/clobber.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
12
13
14
# File 'lib/clobber.rb', line 2

def update
  ['bin'].each{|dir| 
    CLOBBER.include(dir) if File.exists?(dir)
  }  
  
  clean=Clean.new
  clean.update

  CLOBBER.include('*.gem')

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

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