Class: Analyze

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

Instance Attribute Summary

Attributes inherited from Array

#env

Instance Method Summary collapse

Methods inherited from Array

#add, #add_passive, #add_quiet, #execute, #has_command?, #intialize, #to_html

Instance Method Details

#updateObject



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

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