It is now possible to create a Regexp that escapes all regexp special characters by adding a boolean `true` as a second argument in a call to `new`. For example `Regexp(".[/", true)` or `Regexp.new(".[/", true)`. A second value of `false` is the default.