jxf (John Feminella)
- Login: jxf
- Email: jxf+ruby@jxf.me
- Registered on: 07/19/2014
- Last sign in: 10/28/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
10/28/2014
-
02:01 PM Ruby Bug #10441 (Rejected): Wrong required argument count reported for **kwargs method ArgumentErrors
- When collecting excess keyword arguments, Ruby's ArgumentError message doesn't count the `**kwargs` as possible arguments.
~~~
def foo(**kwargs); "args: #{kwargs}"; end
# => :foo
foo(1, 2, 3)
ArgumentError: wrong number of argum...
07/21/2014
-
02:40 PM Ruby Bug #10075: URI#join needs documentation of its behavior
- Eric Hodel wrote:
> I have changed this to a doc bug, the behavior does not surprise me, I expect it to behave as it does.
Here's my thoughts on this: every other Ruby method I can think of named `#join` works by concatenating its ar...
07/19/2014
-
08:01 AM Ruby Bug #10075 (Closed): URI#join needs documentation of its behavior
- The [documentation](http://www.ruby-doc.org/stdlib-2.1.2/libdoc/uri/rdoc/URI.html#method-c-join) for `URI.join` says:
> "Joins URIs."
Let's look at what a similar `join` method [documentation](http://www.ruby-doc.org/core-2.1.2/Fil...