Method: CodeStats::FileSet#characters_count

Defined in:
lib/code_stats/file_set.rb

#characters_count(options = {}) ⇒ Object



12
13
14
15
16
# File 'lib/code_stats/file_set.rb', line 12

def characters_count options = {}
  total_count = 0
  characters_count_by_language(options).each{|lang, count| total_count += count}
  total_count
end