summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders/_map.rb
blob: c9a20ccb023e06af7dfd064f8c9cc8657f13344e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module CodeRay
module Encoders
  
  map \
    :loc  => :lines_of_code,
    :term => :terminal,
    :tty  => :terminal,
    :plain => :text,
    :plaintext => :text,
    :remove_comments => :comment_filter,
    :stats => :statistic
  
  # No default because Tokens#nonsense would not raise NoMethodError.
  
end
end