stillhart (Fabian Stillhart)
- Login: stillhart
- Email: fabian_stillhart@hotmail.com
- Registered on: 10/22/2015
- Last sign in: 07/14/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 1 | 2 |
Activity
07/14/2022
-
08:04 AM Ruby Feature #18913 (Rejected): Add object name to the NoMethodError error message: undefined method `_method_' for `_class_' in `_object_name_'
Hi
I think the `NoMethodError` error message is missing the object name. The object name is already present in `NameError`. Currently one needs to dig into the source code and debug it in order to find which variable or method is ac...
03/10/2016
-
06:00 PM Ruby Feature #12165 (Open): Hash#first, Hash#last
- Just run into a simple problem with a colleague and was wondering why there is no Hash#last method?
~~~ruby
{a: true, b: false}.last
NoMethodError: undefined method 'last' for {:a=>true, :b=>false}:Hash
~~~
Interestingly I while...