Sha256: 79eac4a79d5cbbb2604bd1a277527d193a0229eb7f8303a4fffff8b52f175f7e

Contents?: true

Size: 712 Bytes

Versions: 6660

Compression:

Stored size: 712 Bytes

Contents

autoload :YAML, 'yaml'

module CodeRay
module Encoders
  
  # = YAML Encoder
  #
  # Slow.
  class YAML < Encoder
    
    register_for :yaml
    
    FILE_EXTENSION = 'yaml'
    
  protected
    def setup options
      super
      
      @data = []
    end
    
    def finish options
      output ::YAML.dump(@data)
    end
    
  public
    def text_token text, kind
      @data << [text, kind]
    end
    
    def begin_group kind
      @data << [:begin_group, kind]
    end
    
    def end_group kind
      @data << [:end_group, kind]
    end
    
    def begin_line kind
      @data << [:begin_line, kind]
    end
    
    def end_line kind
      @data << [:end_line, kind]
    end
    
  end
  
end
end

Version data entries

6,660 entries across 6,648 versions & 72 rubygems

Version Path
coderay-1.0.9 lib/coderay/encoders/yaml.rb
coderay-1.0.9.rc1 lib/coderay/encoders/yaml.rb
coderay-1.0.8 lib/coderay/encoders/yaml.rb
coderay-1.0.8.rc1 lib/coderay/encoders/yaml.rb
coderay-1.0.7 lib/coderay/encoders/yaml.rb
coderay-1.0.7.rc2 lib/coderay/encoders/yaml.rb
coderay-1.0.7.rc1 lib/coderay/encoders/yaml.rb
coderay-1.0.6 lib/coderay/encoders/yaml.rb
coderay-1.0.6.rc1 lib/coderay/encoders/yaml.rb
coderay-1.0.5 lib/coderay/encoders/yaml.rb
coderay-1.0.5.rc1 lib/coderay/encoders/yaml.rb
coderay-1.0.4 lib/coderay/encoders/yaml.rb
coderay-1.0.3 lib/coderay/encoders/yaml.rb
coderay-1.0.2 lib/coderay/encoders/yaml.rb
coderay-1.0.1 lib/coderay/encoders/yaml.rb
coderay-1.0.0 lib/coderay/encoders/yaml.rb
coderay-1.0.0.864rc3 lib/coderay/encoders/yaml.rb
coderay-1.0.0.846rc2 lib/coderay/encoders/yaml.rb
coderay-1.0.0.835rc1 lib/coderay/encoders/yaml.rb
coderay-1.0.0.831pre lib/coderay/encoders/yaml.rb