comparison vendor/gems/coderay-1.0.0/lib/coderay/encoders/_map.rb @ 909:cbb26bc654de redmine-1.3

Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author Chris Cannam
date Fri, 24 Feb 2012 19:09:32 +0000
parents
children
comparison
equal deleted inserted replaced
908:c6c2cbd0afee 909:cbb26bc654de
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