lib/rouge/lexers/shell.rb in rouge-0.2.0 vs lib/rouge/lexers/shell.rb in rouge-0.2.1

- old
+ new

@@ -1,7 +1,9 @@ module Rouge module Lexers class Shell < RegexLexer + desc "Various shell languages, including sh and bash" + tag 'shell' aliases 'bash', 'zsh', 'ksh', 'sh' filenames '*.sh', '*.bash', '*.zsh', '*.ksh' mimetypes 'application/x-sh', 'application/x-shellscript'