1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
def self.parsers
{ "Ruby" => :ruby,
"Ruby (on Rails)" => :ruby_on_rails,
"Diff" => :diff,
"Plain text" => :plain_text,
"C/C++" => "c++",
"CSS" => :css,
"Java" => :java,
"JavaScript" => :javascript,
"HTML / XML" => :html,
"HTML (Rails)" => :html_rails,
"Shell Script (Bash)" => "shell-unix-generic",
"SQL" => :sql,
"PHP" => :php,
"Python" => :python,
}
end
|