Class: Analyze

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

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



2
3
4
5
6
7
# File 'lib/commands/analyze.rb', line 2

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