blob: c12f8d0ade0b5b8d303ef24315cbe2d43dc4533a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
module CodeRay
module Encoders
# = YAML Encoder
#
# Slow.
class YAML < Encoder
register_for :yaml
FILE_EXTENSION = 'yaml'
protected
def setup options
require 'yaml'
@out = []
end
def finish options
@out.to_a.to_yaml
end
public
def text_token text, kind
@out << [text, kind]
end
def begin_group kind
@out << [:begin_group, kind]
end
def end_group kind
@out << [:end_group, kind]
end
def begin_line kind
@out << [:begin_line, kind]
end
def end_line kind
@out << [:end_line, kind]
end
end
end
end
|