From: gam3-ruby@...3.net Date: 2016-08-29T14:41:33+00:00 Subject: [ruby-core:77094] [Ruby trunk Feature#12700] regexg heredoc support Issue #12700 has been updated by Allen Morris. Updated pull request. ---------------------------------------- Feature #12700: regexg heredoc support https://bugs.ruby-lang.org/issues/12700#change-60316 * Author: Allen Morris * Status: Open * Priority: Normal * Assignee: ---------------------------------------- There is support for ', ", and ` heredocs, but there is no support for /. Example code with new feature: ~~~ ruby first = 'first' orig = /#{first} match\s # match this # match this /x right = <