Mercurial > hg > soundsoftware-site
view vendor/gems/coderay-0.9.7/lib/coderay/encoders/yaml.rb @ 541:c3abeb11bc2e feature_36
Addresses Issus #224 - separates the projects in a project list using commas.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 28 Jul 2011 15:04:24 +0100 |
parents | 0579821a129a |
children |
line wrap: on
line source
module CodeRay module Encoders # = YAML Encoder # # Slow. class YAML < Encoder register_for :yaml FILE_EXTENSION = 'yaml' protected def compile tokens, options require 'yaml' @out = tokens.to_a.to_yaml end end end end