Sha256: 30b87dc4c9b815b7308c009b94a8a729470bd57b769873ef3f178dec3c33311c

Contents?: true

Size: 1.67 KB

Versions: 7

Compression:

Stored size: 1.67 KB

Contents

/**
 * Ruby syntax v 1.0 
 * 
 * v1.0 by Patrice De Saint Steban (2007/01/03)
 *   
**/
editAreaLoader.load_syntax["ruby"] = {
	'COMMENT_SINGLE' : {1 : '#'}
	,'COMMENT_MULTI' : {}
	,'QUOTEMARKS' : {1: "'", 2: '"'}
	,'KEYWORD_CASE_SENSITIVE' : true
	,'KEYWORDS' : {
		'reserved' : [
			'alias', 'and', 'BEGIN', 'begin', 'break', 'case', 'class', 'def', 'defined', 'do', 'else',
			'elsif', 'END', 'end', 'ensure', 'false', 'for', 'if', 
			'in', 'module', 'next', 'not', 'or', 'redo', 'rescue', 'retry',
			'return', 'self', 'super', 'then', 'true', 'undef', 'unless', 'until', 'when', 'while', 'yield'
		]
	}
	,'OPERATORS' :[
		'+', '-', '/', '*', '=', '<', '>', '%', '!', '&', ';', '?', '`', ':', ','
	]
	,'DELIMITERS' :[
		'(', ')', '[', ']', '{', '}'
	]
	,'REGEXPS' : {
		'constants' : {
			'search' : '()([A-Z]\\w*)()'
			,'class' : 'constants'
			,'modifiers' : 'g'
			,'execute' : 'before' 
		}
		,'variables' : {
			'search' : '()([\$\@\%]+\\w+)()'
			,'class' : 'variables'
			,'modifiers' : 'g'
			,'execute' : 'before' 
		}
		,'numbers' : {
			'search' : '()(-?[0-9]+)()'
			,'class' : 'numbers'
			,'modifiers' : 'g'
			,'execute' : 'before' 
		}
		,'symbols' : {
			'search' : '()(:\\w+)()'
			,'class' : 'symbols'
			,'modifiers' : 'g'
			,'execute' : 'before'
		}
	}
	,'STYLES' : {
		'COMMENTS': 'color: #3F7F5F;'
		,'QUOTESMARKS': 'color: #999999;'
		,'KEYWORDS' : {
			'reserved' : 'color: #A4357A;'
			}
		,'OPERATORS' : 'color: #003399;'
		,'DELIMITERS' : 'color: #003399;'
		,'REGEXPS' : {
			'variables' : 'color: #004080;'
			,'numbers' : 'color: #0080FF;'
			,'constants' : 'color: #777777;'
			,'symbols' : 'color: #FF3030;'
		}	
	}
};

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
unageanu-jiji-1.2.1 html/js/edit_area/reg_syntax/ruby.js
unageanu-jiji-1.2.3 html/js/edit_area/reg_syntax/ruby.js
unageanu-jiji-1.2.4 html/js/edit_area/reg_syntax/ruby.js
jiji-1.2.8 html/js/edit_area/reg_syntax/ruby.js
jiji-1.2.7 html/js/edit_area/reg_syntax/ruby.js
jiji-1.2.6 html/js/edit_area/reg_syntax/ruby.js
jiji-1.2.5 html/js/edit_area/reg_syntax/ruby.js