# File lib/coderay/encoders/token_class_filter.rb, line 26 26: def include_text_token? text, kind 27: (@include == :all || @include.include?(kind)) && 28: !(@exclude == :all || @exclude.include?(kind)) 29: end
# File lib/coderay/encoders/token_class_filter.rb, line 18 18: def setup options 19: super 20: @exclude = options[:exclude] 21: @exclude = Array(@exclude) unless @exclude == :all 22: @include = options[:include] 23: @include = Array(@include) unless @include == :all 24: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.