git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3014 e93f8b46-1217-0410-a6f0-8f06a7374b81
20 lines
265 B
Ruby
20 lines
265 B
Ruby
module CodeRay
|
|
module Encoders
|
|
|
|
# = JSON Encoder
|
|
class JSON < Encoder
|
|
|
|
register_for :json
|
|
FILE_EXTENSION = 'json'
|
|
|
|
protected
|
|
def compile tokens, options
|
|
require 'json'
|
|
@out = tokens.to_a.to_json
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|