aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexRuby.cxx
AgeCommit message (Collapse)AuthorFilesLines
2013-06-29Simplify code so that it is understood by cppcheck, avoiding warnings.Neil1-1/+1
2013-04-05Fix crash in 64-bit builds due to unsigned underflow.nyamatongwe1-1/+1
2012-09-14Recognize Ruby HereDoc after an instance or class variableColomban Wendling1-1/+6
This fixes highlighting HereDoc in constructs like this: @foo.concat <<END ... END
2012-09-13Fix folding of "for" Ruby loopsColomban Wendling1-2/+5
The "for" loops can end with a "do" keyword, and this "do" shouldn't start its own scope.
2012-02-25Fix dead code warnings from Xcode Analyze.nyamatongwe1-2/+0
2011-12-09Fixed ruby lexer to correctly handle '=begin' comments at start of file. Any ↵Nathan Broadbent1-2/+2
'=' at the start of a file would incorrectly trigger the comment state. --- lexers/LexRuby.cxx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
2011-01-27Dropped inclusion of PropSetSimple.h in lexers which do not use ↵nyamatongwe1-1/+0
PropSetSimple directly. Dropped declaration not needed in LexCPP.
2011-01-19Increased style bits to 6 as style numbers above 31 used.nyamatongwe1-1/+1
2010-12-09Folding for Ruby here documents. Feature #3118224.nyamatongwe1-1/+7
2010-10-20Trailing whitespace fixed.nyamatongwe1-2/+2
2010-10-20Folding fix for "if" keyword used as a modifier where it is separatednyamatongwe1-3/+38
from the modified statement by an escaped new line. From bug #2093767.
2010-10-20Handle % quoting better.nyamatongwe1-0/+9
From bug #2093767.
2010-10-20Treat all dots as operators in ranges 1..2 and 1...2 rather thannyamatongwe1-0/+4
treating the first dot as part of a number. Fixes part of bug #3058496 and patch came from bug #2093767.
2010-07-13For new lexer design change includes to add new files and remove unused files.nyamatongwe1-50/+55
Normalise order of includes. Minor fixes for compatibility with new lexer design.
2010-07-13Moved lexers into lexers directory.nyamatongwe1-0/+1715