~epii/kagura/1.1

« back to all changes in this revision

Viewing changes to kagura/packs/plugins/SyntaxHighlighter/shBrushRuby.js

  • Committer: epii
  • Date: 2009-12-27 06:14:34 UTC
  • Revision ID: svn-v4:9b580f6f-30a1-4087-afa3-92ba4f18fc20:trunk:26
Kagura ディレクトリとプラグインディレクトリを分離。
また Sample プログラムも別ディレクトリに。
それに伴いバージョンを v1.1 に変更。

ライセンスを LGPL に変更した。

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Ruby 1.8.4 syntax contributed by Erik Peterson */
2
 
dp.sh.Brushes.Ruby = function()
3
 
{
4
 
  var keywords =        'alias and BEGIN begin break case class def define_method defined do each else elsif ' +
5
 
                                        'END end ensure false for if in module new next nil not or raise redo rescue retry return ' +
6
 
                                        'self super then throw true undef unless until when while yield';
7
 
 
8
 
  var builtins =        'Array Bignum Binding Class Continuation Dir Exception FalseClass File::Stat File Fixnum Fload ' +
9
 
                                        'Hash Integer IO MatchData Method Module NilClass Numeric Object Proc Range Regexp String Struct::TMS Symbol ' +
10
 
                                        'ThreadGroup Thread Time TrueClass'
11
 
 
12
 
        this.regexList = [
13
 
                { regex: dp.sh.RegexLib.SingleLinePerlComments,                 css: 'comment' },       // one line comments
14
 
                { regex: dp.sh.RegexLib.DoubleQuotedString,                             css: 'string' },        // double quoted strings
15
 
                { regex: dp.sh.RegexLib.SingleQuotedString,                             css: 'string' },        // single quoted strings
16
 
                { regex: new RegExp(':[a-z][A-Za-z0-9_]*', 'g'),                css: 'symbol' },        // symbols
17
 
                { regex: new RegExp('(\\$|@@|@)\\w+', 'g'),                             css: 'variable' },      // $global, @instance, and @@class variables
18
 
                { regex: new RegExp(this.GetKeywords(keywords), 'gm'),  css: 'keyword' },       // keywords
19
 
                { regex: new RegExp(this.GetKeywords(builtins), 'gm'),  css: 'builtin' }        // builtins
20
 
                ];
21
 
 
22
 
        this.CssClass = 'dp-rb';
23
 
        this.Style =    '.dp-rb .symbol { color: #a70; }' +
24
 
                                        '.dp-rb .variable { color: #a70; font-weight: bold; }';
25
 
}
26
 
 
27
 
dp.sh.Brushes.Ruby.prototype = new dp.sh.Highlighter();
28
 
dp.sh.Brushes.Ruby.Aliases = ['ruby', 'rails', 'ror'];