Sha256: 03a4bf178dd166f5d07509df2b13393a3706dc513cb0ec0bc89e772382b814de

Contents?: true

Size: 365 Bytes

Versions: 48

Compression:

Stored size: 365 Bytes

Contents

# -*- coding: utf-8 -*- #
# frozen_string_literal: true

module Rouge
  module Formatters
    # A formatter which renders nothing.
    class Null < Formatter
      tag 'null'

      def initialize(*)
      end

      def stream(tokens, &b)
        tokens.each do |tok, val|
          yield "#{tok.qualname} #{val.inspect}\n"
        end
      end
    end
  end
end

Version data entries

48 entries across 48 versions & 3 rubygems

Version Path
rouge-4.5.1 lib/rouge/formatters/null.rb
rouge-4.5.0 lib/rouge/formatters/null.rb
rouge-4.4.0 lib/rouge/formatters/null.rb
rouge-4.3.0 lib/rouge/formatters/null.rb
rouge-4.2.1 lib/rouge/formatters/null.rb
rouge-4.2.0 lib/rouge/formatters/null.rb
rouge-4.1.3 lib/rouge/formatters/null.rb
rouge-4.1.2 lib/rouge/formatters/null.rb
rouge-4.1.1 lib/rouge/formatters/null.rb
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/rouge-3.30.0/lib/rouge/formatters/null.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/rouge-3.30.0/lib/rouge/formatters/null.rb
rouge-4.1.0 lib/rouge/formatters/null.rb
rouge-4.0.1 lib/rouge/formatters/null.rb
rouge-4.0.0 lib/rouge/formatters/null.rb
rouge-3.30.0 lib/rouge/formatters/null.rb
rouge-3.29.0 lib/rouge/formatters/null.rb
rouge-3.28.0 lib/rouge/formatters/null.rb
rouge-3.27.0 lib/rouge/formatters/null.rb
rouge-3.26.1 lib/rouge/formatters/null.rb
mumukit-content-type-1.11.1 vendor/bundle/ruby/2.6.0/gems/rouge-3.26.0/lib/rouge/formatters/null.rb