From: shyouhei@... Date: 2016-09-24T02:45:38+00:00 Subject: [ruby-core:77376] [Ruby trunk Feature#12700][Open] regexg heredoc support Issue #12700 has been updated by Shyouhei Urabe. Status changed from Rejected to Open Reopened. Though I have never needed to write such long regexp literals inline, privately. Whenever I wanted multine superb regexps they are named, most likely become constants. For variable/constant assignments, %r perfectly works. I doubt the actual needs of this syntax. ---------------------------------------- Feature #12700: regexg heredoc support https://bugs.ruby-lang.org/issues/12700#change-60622 * 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 = <