Class: Clean

Inherits:
Array show all
Defined in:
lib/dev_commands.rb

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



311
312
313
314
315
316
317
318
319
320
# File 'lib/dev_commands.rb', line 311

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