This method is deprecated or moved on the latest stable version. The last existing version (v2_2_9) is shown here.
last_line(src)
Returns the last line of src
# File lib/rdoc/rd/inline_parser.rb, line 215 def last_line(src) if n = src.rindex("\n") src[(n+1) .. -1] else src end end