devans (Daniel Evans)
- Login: devans
- Email: evans.daniel.n@gmail.com
- Registered on: 04/29/2012
- Last sign in: 04/06/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
05/12/2012
-
07:01 AM Ruby Bug #6378: irb incorrectly considers line incomplete when parenthesis are excluded
- I noticed while working today that this only affects certain symbols, particularly :+ and :-
If you attempt the same code with :* it works perfectly.
irb(main):001:0> [1,2,3,4].reduce :-
irb(main):002:0* ^D
irb(main):002:0> [1,2,...
04/29/2012
-
03:40 PM Ruby Bug #6378 (Closed): irb incorrectly considers line incomplete when parenthesis are excluded
- Steps to reproduce:
start irb
attempt to execute the following line:
[1,2,3].reduce :+
Expected:
a result of `=> 6` should be printed and a new line should be available
Actual:
The result is not printed and the shell indicat...