-
Very simple: `Marshal.load Marshal.dump(-0.841)` gives `0.841`. (!)
Tested with rbx-2.2.6, but works as expected with ruby-2.1.1.
It's not clear to me how this is possible given that the `dump` part…
-
Reference: https://github.com/rubyspec/rubyspec/pull/278
In MRI irb:
```
2.1.1 :001 > class ArraySubclass < Array; end
=> nil
2.1.1 :002 > a = *(ArraySubclass.new([1,2]))
=> [1, 2]
2.1.1 :003 > …
-
The 10 argument variant of `Time.local` mishandles the timezone of the created object:
JRuby:
(rdb:1) p Time.local(59, 59, 23, 31, 3, 2011, 4, 90, true, "PDT")
2011-03-31 23:59:59 UTC
MRI 1.9.3:
(r…
-
I'm trying to use the "fpm" tool on CentOS / RHEL 5.x which is on Ruby 1.8.5. I've been led to believe that it's not working because 'backports' installs but doesn't actually work on 1.8.5. Is that ri…
-
It seems like we're all copying keys when inserting a value with a string key. I guess this is to avoid people mutating the string after inserting into a hash, and forgot to rehash the hash.
```
ruby…
-
I am unsure if this is a problem with rubinius, rubyspec, both, or neither.
Travis CI project https://travis-ci.org/saturnflyer/casting and failing build https://travis-ci.org/saturnflyer/casting/job…
-
Thank you for Unparser!
I've found that `a + b + c` unparses to `(a + b) + c`, which I think is a bug. Here is an addition to the spec to demonstrate it:
https://github.com/mvidner/unparser/commit/6f…
-
Hi,
I tried to look up informations on this but I can't find anything at all so...
is there a rubinius version with support for keyword arguments currently ?
I just tried with the 2.0.0 release but m…
-
On a completely fresh 2.1.2 install with no gems previously installed, I did:
``` plain
$ gem install bundler
$ bundle install
$ rspec spec
```
The tests are still running :) but the first part of t…
-
We currently use rubyspecs for our minimal stdlib, but rubyspec has now removed them and put the specs into the individual rubysl gems. Not sure what is best here.