[#73707] [Ruby trunk Misc#12004] Code of Conduct — hanmac@...
Issue #12004 has been updated by Hans Mackowiak.
3 messages
2016/02/05
[#73730] [Ruby trunk Feature#12034] RegExp does not respect file encoding directive — nobu@...
Issue #12034 has been updated by Nobuyoshi Nakada.
3 messages
2016/02/07
[#73746] [Ruby trunk Feature#12034] RegExp does not respect file encoding directive — nobu@...
Issue #12034 has been updated by Nobuyoshi Nakada.
3 messages
2016/02/09
[#73919] [Ruby trunk Feature#11262] Make more objects behave like "Functions" — Ruby-Lang@...
Issue #11262 has been updated by J旦rg W Mittag.
3 messages
2016/02/22
[#74019] [Ruby trunk Bug#12103][Rejected] ruby process hangs while executing regular expression. — duerst@...
Issue #12103 has been updated by Martin D端rst.
3 messages
2016/02/27
[ruby-core:74009] [Ruby trunk Feature#12114] $VERBOSE = true is being ignored
From:
nobu@...
Date:
2016-02-26 14:00:13 UTC
List:
ruby-core #74009
Issue #12114 has been updated by Nobuyoshi Nakada.
Tracker changed from Bug to Feature
Description updated
Thus is a spec now.
That warning is at parsing, but `BEGIN` blocks are executed after it.
It may be possible by executing `BEGIN`s during parsing, but it needs renovations.
----------------------------------------
Feature #12114: $VERBOSE = true is being ignored
https://bugs.ruby-lang.org/issues/12114#change-57162
* Author: Ronald Fischer
* Status: Open
* Priority: Normal
* Assignee:
----------------------------------------
This programm correctly complains about "assigned but unused variable - p"
~~~ruby
#!/usr/bin/ruby -w
p=1
~~~
However, this one doesn't
~~~ruby
#!/usr/bin/ruby
BEGIN {$VERBOSE = true}
p=1
~~~
Setting `$VERBOSE` to true in a `BEGIN` block should have the same effect as providing it on the command line, but this is obviously not the case.
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>