Method: CCReport#initialize

Defined in:
lib/cc_report.rb

#initialize(source) ⇒ CCReport

Returns a new instance of CCReport.



5
6
7
8
9
# File 'lib/cc_report.rb', line 5

def initialize source
  @output = ""
  @analyser = ComplexityAnalyser.new
  @source = source
end