blob: 3c85463f2dd20a206051dde9c6736cb66fc70e1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'coderay'
begin
CodeRay::Encoders::YAML
rescue
puts 'CodeRay::Encoders::YAML is not defined; you must load it first.'
end
yaml_encoder = CodeRay::Encoders[:yaml]
puts 'Now it is loaded.'
p yaml_encoder == CodeRay::Encoders::YAML #-> true
puts 'See?'
|