-
$ gcc -v
gcc version 4.3.4 (Gentoo 4.3.4 p1.0, pie-10.1.5)
$ ruby -v
ruby 1.8.7 (2010-01-10 patchlevel 249) [x86_64-linux]
$ ./configure
Configuring LLVM...
Checking for existing LLVM tree: not…
-
MRI accepts the second argument of File.expand_path to be a relative path as well. This use case does not work properly with Rubinius
Fixed with
http://github.com/doudou/rubinius/commit/5be0531b055…
-
Patch for spec now here http://gist.github.com/295273. I'll updated link to commit after applying.
-
Apparently, require 'backports/1.8.8' (thus require 'backports') fails on rubinius:
see http://gist.github.com/286290
Backports version is 1.13.0, running on OSX 10.6 against rubinius 1.0rc2.
-
Given the following script:
```
class MyException < Exception
def initialize(arg)
STDERR.puts "arg: #{arg}"
end
end
begin
instance = MyException.new(10)
STDERR.puts "raise instance: #{in…
-
Patch: http://gist.github.com/270239
-
I have ruby 1.9.2dev from svn trunk and rake installed on top of it. Running rake to compile rubinius fails:
654 [15:03] roberto@rron:GIT/rubinius> rake clean
(in /Volumes/Users/roberto/Build/GIT/ru…
-
Regexp#named_captures bombs if there are no @names.
This fixes a failing rubyspec test.
http://github.com/josh/rubinius/commit/0418fc10e0c662d883c42791d4b5152fabd52f42
josh updated
14 years ago
-
I've been building from the HEAD for months. Post rc3, tests still show rc2
rubinius 1.0.0-rc2 (1.8.7 7e7fcdd3 2010-01-04 JI) [x86_64-apple-darwin10.2.0]
in fact, it's in the binary too:
bin/rb…
-
Here's a conversion of MRI 1.8.7's Array#permutation.
http://gist.github.com/266248
None of spec/ruby/core/array/permutation_spec.rb was passing before because there was no implementation of this me…