Sha256: ab624fdccf27efcd7d6e399d09bc5c1bcd13fe059182c4a2031bcf1c5db79db1

Contents?: true

Size: 967 Bytes

Versions: 5

Compression:

Stored size: 967 Bytes

Contents

module CodeRay
module Encoders
  
  # A Filter encoder has another Tokens instance as output.
  # It can be subclass to select, remove, or modify tokens in the stream.
  # 
  # Subclasses of Filter are called "Filters" and can be chained.
  # 
  # == Options
  # 
  # === :tokens
  # 
  # The Tokens object which will receive the output.
  # 
  # Default: Tokens.new
  # 
  # See also: TokenKindFilter
  class Filter < Encoder
    
    register_for :filter
    
  protected
    def setup options
      @out = options[:tokens] || Tokens.new
    end
    
  public
    
    def text_token text, kind  # :nodoc:
      @out.text_token text, kind
    end
    
    def begin_group kind  # :nodoc:
      @out.begin_group kind
    end
    
    def begin_line kind  # :nodoc:
      @out.begin_line kind
    end
    
    def end_group kind  # :nodoc:
      @out.end_group kind
    end
    
    def end_line kind  # :nodoc:
      @out.end_line kind
    end
    
  end
  
end
end

Version data entries

5 entries across 5 versions & 1 rubygems

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