summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders/yaml.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/coderay/encoders/yaml.rb')
-rw-r--r--lib/coderay/encoders/yaml.rb23
1 files changed, 13 insertions, 10 deletions
diff --git a/lib/coderay/encoders/yaml.rb b/lib/coderay/encoders/yaml.rb
index 4e2b7a1..b842647 100644
--- a/lib/coderay/encoders/yaml.rb
+++ b/lib/coderay/encoders/yaml.rb
@@ -1,19 +1,22 @@
module CodeRay
- module Encoders
+module Encoders
- class YAML < Encoder
+ # = YAML Encoder
+ #
+ # Slow.
+ class YAML < Encoder
- register_for :yaml
+ register_for :yaml
- FILE_EXTENSION = 'yaml'
-
- protected
- def compile tokens, options
- require 'yaml'
- @out = tokens.to_a.to_yaml
- end
+ FILE_EXTENSION = 'yaml'
+ protected
+ def compile tokens, options
+ require 'yaml'
+ @out = tokens.to_a.to_yaml
end
end
+
+end
end