Starting to learn some Ruby with the Ruby cookbook I used Ironruby in Netbeans to use a recipe for generating statistics on my Ruby project. The program loops through the lib directory and generates some stats. After running the code I found that the statistics were incorrectly showing the number of lines with code. Only the lines of code without indented code were counted as code, when an indention was found on a line of code it was treated as a whiteline. I tested the regex online and there it worked correctly. I have included the codeblock below.
For this project I used Ironruby 1.1.3 which implements Ruby 1.9. After finding that the regular expression was correct I changed to JRuby (using version 1.8 of Ruby) in Netbeans. To my surprise the code was working in JRuby (included in Netbeans 6.9) as expected and showing the correct numbers. I have fixed the code under Ironruby by testing if the white line is really empty by including @lines_of_code += 1 if line.lstrip.length > 0 in the case of a white line, but that is not the preferred way of course.
case line
when /^=begin(\s|$)/
in_multiline_comment = true
@comment_lines += 1
when /^=end(\s|$)/
@comment_lines += 1
in_multiline_comment = false
when /^\s*#/
@comment_lines += 1
when /^\s*$/
# empty whitespace only line
Is this behavior caused by the Ruby 1.9 spec or is have I found a bug in Ironruby? I have googled for this and have not found a known issue.