ben (Björn Engelmann)
- Login: ben
- Registered on: 11/09/2025
- Last sign in: 11/09/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/09/2025
-
11:46 AM Ruby Bug #21677 (Rejected): Integer("08") raises an ArgumentError
- ruby version: tried it with 3.3.0 and 3.3.8
When running the following ruby script:
p Integer("04")
p Integer("05")
p Integer("06")
p Integer("07")
p Integer("08")
I get the following output:
4
5
6
7
<internal:kernel>...
01/14/2020
-
06:40 AM Ruby Revision 9994eb8a (git): [ruby/irb] Fix newline depth with multiple braces
- This commit fixes the check_newline_depth_difference method to multiple
open braces on one line into account. Before this change we were
subtracting from the depth in check_newline_depth_difference on
every open brace. This is the right ... -
06:40 AM Ruby Revision c94025b6 (git): [ruby/irb] Fix crashing when multiple open braces per line
- https://github.com/ruby/irb/issues/55
If we had put multiple open braces on a line the with no closing brace
spaces_of_nest array keeps getting '0' added to it. This means that when
we pop off of this array we are saying that we should ...
12/31/2019
-
02:32 PM Ruby Revision a118bb80 (git): [ruby/irb] Add tests for RubyLex
- The set_auto_indent method calculates the correct number of spaces for
indenting a line. We think there might be a few bugs in this method so
we are testing the current functionality to make sure nothing breaks
when we address those bugs...