Sha256: a623d63f06c314a722812b84a9451d75ec12700581b70b5d284a60fdad4c7390

Contents?: true

Size: 509 Bytes

Versions: 6949

Compression:

Stored size: 509 Bytes

Contents

module CodeRay
module Encoders
  
  load :token_kind_filter
  
  # A simple Filter that removes all tokens of the :comment kind.
  # 
  # Alias: +remove_comments+
  # 
  # Usage:
  #  CodeRay.scan('print # foo', :ruby).comment_filter.text
  #  #-> "print "
  # 
  # See also: TokenKindFilter, LinesOfCode
  class CommentFilter < TokenKindFilter
    
    register_for :comment_filter
    
    DEFAULT_OPTIONS = superclass::DEFAULT_OPTIONS.merge \
      :exclude => [:comment, :docstring]
    
  end
  
end
end

Version data entries

6,949 entries across 6,937 versions & 73 rubygems

Version Path
torquebox-console-0.2.5 vendor/bundle/jruby/1.9/gems/coderay-1.0.9/lib/coderay/encoders/comment_filter.rb
torquebox-console-0.2.4 vendor/bundle/jruby/1.9/gems/coderay-1.0.9/lib/coderay/encoders/comment_filter.rb
torquebox-console-0.2.3 vendor/bundle/jruby/1.9/gems/coderay-1.0.9/lib/coderay/encoders/comment_filter.rb
coderay-1.0.9 lib/coderay/encoders/comment_filter.rb
coderay-1.0.9.rc1 lib/coderay/encoders/comment_filter.rb
coderay-1.0.8 lib/coderay/encoders/comment_filter.rb
coderay-1.0.8.rc1 lib/coderay/encoders/comment_filter.rb
coderay-1.0.7 lib/coderay/encoders/comment_filter.rb
coderay-1.0.7.rc2 lib/coderay/encoders/comment_filter.rb
coderay-1.0.7.rc1 lib/coderay/encoders/comment_filter.rb
coderay-1.0.6 lib/coderay/encoders/comment_filter.rb
coderay-1.0.6.rc1 lib/coderay/encoders/comment_filter.rb
coderay-1.0.5 lib/coderay/encoders/comment_filter.rb
coderay-1.0.5.rc1 lib/coderay/encoders/comment_filter.rb
coderay-1.0.4 lib/coderay/encoders/comment_filter.rb
coderay-1.0.3 lib/coderay/encoders/comment_filter.rb
coderay-1.0.2 lib/coderay/encoders/comment_filter.rb
coderay-1.0.1 lib/coderay/encoders/comment_filter.rb
coderay-1.0.0 lib/coderay/encoders/comment_filter.rb
coderay-1.0.0.864rc3 lib/coderay/encoders/comment_filter.rb