Sha256: 79eac4a79d5cbbb2604bd1a277527d193a0229eb7f8303a4fffff8b52f175f7e

Contents?: true

Size: 712 Bytes

Versions: 7061

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

7,061 entries across 7,048 versions & 75 rubygems

Version Path
passbase-1.0.0 vendor/bundle/ruby/2.7.0/gems/coderay-1.1.3/lib/coderay/encoders/yaml.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.3.0/gems/coderay-1.1.1/lib/coderay/encoders/yaml.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.5.0/gems/coderay-1.1.3/lib/coderay/encoders/yaml.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.3.0/gems/coderay-1.1.1/lib/coderay/encoders/yaml.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.5.0/gems/coderay-1.1.3/lib/coderay/encoders/yaml.rb
metanorma-cli-1.3.4 gems/ruby/2.6.0/gems/coderay-1.1.3/lib/coderay/encoders/yaml.rb
metanorma-cli-1.3.3.1 gems/ruby/2.6.0/gems/coderay-1.1.3/lib/coderay/encoders/yaml.rb
logstash-output-scalyr-0.1.5 vendor/bundle/jruby/2.5.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb
logstash-output-scalyr-0.1.4 vendor/bundle/jruby/2.5.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb
logstash-output-scalyr-0.1.3 vendor/bundle/jruby/2.5.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb
coderay-1.1.3 lib/coderay/encoders/yaml.rb
coderay-1.1.3.rc1 lib/coderay/encoders/yaml.rb
logstash-output-scalyr-0.1.2 vendor/bundle/jruby/2.5.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb
talon_one-2.0.0 vendor/bundle/ruby/2.3.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb
talon_one-2.0.0 vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/coderay-1.1.2/lib/coderay/encoders/yaml.rb