summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders/_map.rb
blob: e5cbdebd248d6902778b8dcdaba7000e591976e8 (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,
    :plain           => :text,
    :plaintext       => :text,
    :remove_comments => :comment_filter,
    :stats           => :statistic,
    :term            => :terminal,
    :tty             => :terminal
  
  # No default because Tokens#nonsense should raise NoMethodError.
  
end
end