I am aware of this document: http://ruby-doc.org/core/classes/Regexp.html
However, here are two absolutely critical things the regexp class does that are not documented there:
^ and $ match line start and end, not string start and end (\A and \Z). In other languages, like Perl, ^ and $ will match the string start/end by default. (This behavior is in fact one of the very first things the perlre documentation explains.)
The /m (multi-line) flag causes "." to match newlines. The Ruby docs only say this flag exists, not what it actually does.
Is there nowhere that the full and complete specification of behavior for Ruby regexps is documented? Or are we all supposed to feel our way through the dark on these things?