Sha256: 42511e394361dc9ff62db983f93648a1fbacf8cbfebe5e189fd36fd2abcf6dc4

Contents?: true

Size: 1.04 KB

Versions: 6968

Compression:

Stored size: 1.04 KB

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
      super
      
      @tokens = options[:tokens] || Tokens.new
    end
    
    def finish options
      output @tokens
    end
    
  public
    
    def text_token text, kind  # :nodoc:
      @tokens.text_token text, kind
    end
    
    def begin_group kind  # :nodoc:
      @tokens.begin_group kind
    end
    
    def begin_line kind  # :nodoc:
      @tokens.begin_line kind
    end
    
    def end_group kind  # :nodoc:
      @tokens.end_group kind
    end
    
    def end_line kind  # :nodoc:
      @tokens.end_line kind
    end
    
  end
  
end
end

Version data entries

6,968 entries across 6,956 versions & 74 rubygems

Version Path
coderay-1.0.2 lib/coderay/encoders/filter.rb
coderay-1.0.1 lib/coderay/encoders/filter.rb
coderay-1.0.0 lib/coderay/encoders/filter.rb
coderay-1.0.0.864rc3 lib/coderay/encoders/filter.rb
coderay-1.0.0.846rc2 lib/coderay/encoders/filter.rb
coderay-1.0.0.835rc1 lib/coderay/encoders/filter.rb
coderay-1.0.0.831pre lib/coderay/encoders/filter.rb
coderay-1.0.0.815pre lib/coderay/encoders/filter.rb