Sha256: 1f7841c6aafaafd87f3100e29586537e237b8ebd6b360a4fd15563d48087dc9f

Contents?: true

Size: 1.09 KB

Versions: 4

Compression:

Stored size: 1.09 KB

Contents

module CodeRay
module Encoders
  
  # Counts the LoC (Lines of Code). Returns an Integer >= 0.
  # 
  # Alias: +loc+
  # 
  # Everything that is not comment, markup, doctype/shebang, or an empty line,
  # is considered to be code.
  # 
  # For example,
  # * HTML files not containing JavaScript have 0 LoC
  # * in a Java class without comments, LoC is the number of non-empty lines
  # 
  # A Scanner class should define the token kinds that are not code in the
  # KINDS_NOT_LOC constant, which defaults to [:comment, :doctype].
  class LinesOfCode < TokenKindFilter
    
    register_for :lines_of_code
    
    NON_EMPTY_LINE = /^\s*\S.*$/
    
  protected
    
    def setup options
      if scanner
        kinds_not_loc = scanner.class::KINDS_NOT_LOC
      else
        warn "Tokens have no associated scanner, counting all nonempty lines." if $VERBOSE
        kinds_not_loc = CodeRay::Scanners::Scanner::KINDS_NOT_LOC
      end
      
      options[:exclude] = kinds_not_loc
      super options
    end
    
    def finish options
      @out.to_s.scan(NON_EMPTY_LINE).size
    end
    
  end
  
end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
coderay-1.0.0.800pre lib/coderay/encoders/lines_of_code.rb
coderay-1.0.0.798.pre lib/coderay/encoders/lines_of_code.rb
coderay-1.0.0.788.pre lib/coderay/encoders/lines_of_code.rb
coderay-1.0.0.778.pre lib/coderay/encoders/lines_of_code.rb