Mercurial > hg > soundsoftware-site
view .svn/pristine/ff/ff7c7a78022ec834d13d1e81c3b7d935dfcd48bf.svn-base @ 1227:eb168c1e9553 live
Show maximum of 10 colleagues
author | Chris Cannam |
---|---|
date | Tue, 12 Mar 2013 15:45:41 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
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