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 = {} total_count = 0 characters_count_by_language().each{|lang, count| total_count += count} total_count end |