Class: Analyze

Inherits:
Array show all
Defined in:
lib/tasks/analyze.rb

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



8
9
10
11
12
13
# File 'lib/tasks/analyze.rb', line 8

def update
	if(`gem list countloc`.include?('countloc ('))
		FileUtils.mkdir('doc') if(!File.exists?('doc'))
		add 'countloc -r * --html doc/countloc.html'
	end
end