diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2011-08-21 14:44:37 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2011-08-21 14:44:37 +0200 |
commit | 87d8aa2774fe6db8033de3cd730f4fbe8b70176f (patch) | |
tree | 84b72648abc90ff3dad8d73a54b1ec9deb49ce76 /lib/coderay | |
parent | a3a16179e580110cac0472f1f84f036760b1f736 (diff) | |
download | coderay-87d8aa2774fe6db8033de3cd730f4fbe8b70176f.tar.gz |
fix YAML encoder for Ruby 1.8.7
Diffstat (limited to 'lib/coderay')
-rw-r--r-- | lib/coderay/encoders/yaml.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/encoders/yaml.rb b/lib/coderay/encoders/yaml.rb index 1eb2523..d22cd19 100644 --- a/lib/coderay/encoders/yaml.rb +++ b/lib/coderay/encoders/yaml.rb @@ -20,7 +20,7 @@ module Encoders end def finish options - YAML.dump @data, @out + ::YAML.dump @data, @out super end |