3 * http://alexgorbatchev.com/SyntaxHighlighter
5 * SyntaxHighlighter is donationware. If you are using it, please donate.
6 * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
9 * 3.0.83 (July 02 2010)
12 * Copyright (C) 2004-2010 Alex Gorbatchev.
15 * Dual licensed under the MIT and GPL licenses.
20 typeof(require
) != 'undefined' ? SyntaxHighlighter
= require('shCore').SyntaxHighlighter
: null;
24 // Contributed by Erik Peterson.
26 var keywords
= 'alias and BEGIN begin break case class def define_method defined do each else elsif ' +
27 'END end ensure false for if in module new next nil not or raise redo rescue retry return ' +
28 'self super then throw true undef unless until when while yield';
30 var builtins
= 'Array Bignum Binding Class Continuation Dir Exception FalseClass File::Stat File Fixnum Fload ' +
31 'Hash Integer IO MatchData Method Module NilClass Numeric Object Proc Range Regexp String Struct::TMS Symbol ' +
32 'ThreadGroup Thread Time TrueClass';
35 { regex
: SyntaxHighlighter
.regexLib
.singleLinePerlComments
, css
: 'comments' }, // one line comments
36 { regex
: SyntaxHighlighter
.regexLib
.doubleQuotedString
, css
: 'string' }, // double quoted strings
37 { regex
: SyntaxHighlighter
.regexLib
.singleQuotedString
, css
: 'string' }, // single quoted strings
38 { regex
: /\b[A-Z0-9_]+\b/g, css
: 'constants' }, // constants
39 { regex
: /:[a-z][A-Za-z0-9_]*/g, css
: 'color2' }, // symbols
40 { regex
: /(\$|@@|@)\w+/g, css
: 'variable bold' }, // $global, @instance, and @@class variables
41 { regex
: new RegExp(this.getKeywords(keywords
), 'gm'), css
: 'keyword' }, // keywords
42 { regex
: new RegExp(this.getKeywords(builtins
), 'gm'), css
: 'color1' } // builtins
45 this.forHtmlScript(SyntaxHighlighter
.regexLib
.aspScriptTags
);
48 Brush
.prototype = new SyntaxHighlighter
.Highlighter();
49 Brush
.aliases
= ['ruby', 'rails', 'ror', 'rb'];
51 SyntaxHighlighter
.brushes
.Ruby
= Brush
;
54 typeof(exports
) != 'undefined' ? exports
.Brush
= Brush
: null;