summaryrefslogtreecommitdiffstats
path: root/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/null.rb
blob: add3862a335d194f2e8998cbc9f42b5698d1e0f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module CodeRay
module Encoders

  # = Null Encoder
  #
  # Does nothing and returns an empty string.
  class Null < Encoder

    include Streamable
    register_for :null

    # Defined for faster processing
    def to_proc
      proc {}
    end

  protected

    def token(*)
      # do nothing
    end

  end

end
end