summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders/null.rb
blob: 67c49871e7313c97642df2bfe22155de4bd831d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module CodeRay
	module Encoders

		class Null < Encoder

			include Streamable
			register_for :null

			protected

			def token(*)
				# do nothing
			end

		end

	end
end