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?, #initialize, #log_debug_info, #to_html

Constructor Details

This class inherits a constructor from Array

Instance Method Details

#updateObject



9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/tasks/analyze.rb', line 9

def update
  if `gem list countloc`.include?("countloc (")
    FileUtils.mkdir("doc") unless File.exist?("doc")
    add_quiet "countloc -r * --html doc/countloc.html"
  end

  if defined?(DEBUG)
    puts
    puts "Analyze"
    pp self
    puts
  end
end