In Files

Included Modules

Files

HTMLTokenCounterFormater

Public Instance Methods

end() click to toggle source
# File lib/saikuro.rb, line 808
def end
  @out.puts "</body>"
  @out.puts "</html>"
end
end_count() click to toggle source
# File lib/saikuro.rb, line 805
def end_count
end
end_file() click to toggle source
# File lib/saikuro.rb, line 801
def end_file
  @out.puts "</table>"
end
line_token_count(line_number,number_of_tokens) click to toggle source
# File lib/saikuro.rb, line 795
def line_token_count(line_number,number_of_tokens)
  return if @filter.ignore?(number_of_tokens)
  klass = warn_error?(number_of_tokens, line_number)
  @out.puts "<tr><td>#{line_number}</td><td#{klass}>#{number_of_tokens}</td></tr>"
end
start(new_out=nil) click to toggle source
# File lib/saikuro.rb, line 771
def start(new_out=nil)
  reset_data
  @out = new_out if new_out
  @out.puts "<html>"
  @out.puts style_sheet
  @out.puts "<body>"
end
start_count(number_of_files) click to toggle source
# File lib/saikuro.rb, line 779
def start_count(number_of_files)
  @out.puts "<div class=\"start_token_count\">"
  @out.puts "Number of files: #{number_of_files}"
  @out.puts "</div>"
end
start_file(file_name) click to toggle source
# File lib/saikuro.rb, line 785
def start_file(file_name)
  @current = file_name
  @out.puts "<div class=\"file_count\">"
  @out.puts "<p class=\"file_name\">"
  @out.puts "File: #{file_name}"
  @out.puts "</p>"
  @out.puts "<table width=\"100%\" border=\"1\">"
  @out.puts "<tr><th>Line</th><th>Tokens</th></tr>"
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.