To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 0a / 0a371b310545389947180083feb53371bb868f67.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (402 Bytes)

1
module CodeRay
2
module Encoders
3
  
4
  map \
5
    :loc             => :lines_of_code,
6
    :plain           => :text,
7
    :plaintext       => :text,
8
    :remove_comments => :comment_filter,
9
    :stats           => :statistic,
10
    :term            => :terminal,
11
    :tty             => :terminal,
12
    :yml             => :yaml
13
  
14
  # No default because Tokens#nonsense should raise NoMethodError.
15
  
16
end
17
end