bubo47 (Jakub Jursa)
- Login: bubo47
- Email: jakub.jursa1@gmail.com
- Registered on: 11/07/2014
- Last sign in: 08/18/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 3 | 3 |
Activity
08/19/2015
-
08:46 AM Ruby Bug #11463 (Closed): Process.spawn raises TypeError when passing hash with keys/vals other than strings
- ### expected:
~~~
head :001 > Process.spawn({"FOO" => 10}, "bash")
=> 13479
~~~
### got in reality:
~~~
head :001 > Process.spawn({"FOO" => 10}, "bash")
TypeError: no implicit conversion of Fixnum into String
~~~
This...
02/17/2015
-
01:56 PM Ruby Bug #10859 (Closed): Process.spawn raises TypeError when passing hash with symbols as env
- ### expected:
~~~
head :001 > Process.spawn({FOO: "bar"}, "bash")
=> 13479
~~~
### got in reality:
~~~
head :001 > Process.spawn({FOO: "bar"}, "bash")
TypeError: no implicit conversion of Symbol into String
...
~~~
when ...
11/27/2014
-
12:22 PM Ruby Bug #10485: NoMethodError "undefined method `initialize_copy'" when trying to execute Queue#dup
- Recursive Madman wrote:
> > Not all methods in super classes always work on all subclasses.
> ...
definitely.
11/07/2014
-
12:45 PM Ruby Bug #10485: NoMethodError "undefined method `initialize_copy'" when trying to execute Queue#dup
- why not? :)
actually I bumped into this by accident when implementing `Queue#to_a` (which basically clones *self* and empties it into new array which it then returns). So it's not really some kind of blocker bug. But since `#clone` and ... -
10:39 AM Ruby Bug #10485 (Closed): NoMethodError "undefined method `initialize_copy'" when trying to execute Queue#dup
- Queue#dup raises NoMethodError (Queue#clone as well)
~~~
:001 > q = Queue.new
=> #<Thread::Queue:0x00000001507ca0>
:002 > q.dup
NoMethodError: undefined method `initialize_copy' for #<Thread::Queue:0x00000001504c08>
from (ir...