iMIchael (Michael Martinez)
- Login: iMIchael
- Email: michaelmartinez@me.com
- Registered on: 07/30/2015
- Last sign in: 08/01/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 3 | 3 |
Activity
08/28/2015
-
06:22 AM Ruby Bug #11493 (Rejected): IRB/Ruby completely exits when attempting to use NoMethodError exception in BasicObject
- # Summary
Was playing around with BasicObject to implement my own undefined method message and found this issue in IRB
~~~
$ ruby --version
ruby 2.2.0p0 (2014-12-25 revision 49005) [x86_64-darwin14]
$ irb
2.2.0 :002 > class Bas...
08/19/2015
-
01:51 AM Ruby Feature #11460 (Closed): Unhelpful error message when naming a module with the same name as an existing class
- # Summary
The error message when naming a module with the same name as an existing class causes more trouble then it helps.
# Steps to Reproduce
~~~
class X;end
module X;end
=> TypeError: X is not a module
~~~
# Expected Resu...
07/30/2015
-
12:41 AM Ruby Bug #11406 (Closed): Inconsistent behavior when creating a range of strings which end in an integer greater than 10
- # Steps to Reproduce
In Ruby v2.2.2
1. Create a range of strings using 'foo1' up to 'foo9':
~~~ruby
('foo1'..'foo9').to_a
=> ["foo1", "foo2", "foo3", "foo4", "foo5", "foo6", "foo7", "foo8", "foo9"]
~~~
...