Is there a web site that indicates which gems work on rubinius (or other implementations of ruby), like isitruby19.com indicates which gems work on ruby 1.9? (I'm curious about heckle working with rubinius in particular)
Asked
Active
Viewed 218 times
1
-
There's now a site for JRuby: http://isitjruby.com/ – Andrew Grimm Jun 01 '09 at 01:24
2 Answers
1
There isn't as far as I know. If you want to know whether something works, you can download it and run its unit tests. Heckle won't work out of the box because it requires ParseTree, which merely raises a LoadError that says "ParseTree isn't needed with Rubinius."

Chuck
- 234,037
- 30
- 302
- 389
-
1
-
I know. If you don't have ParseTree, it complains that you need it. If you do have ParseTree, it complains that you don't need it. The only winning move is not to play. – Chuck May 05 '09 at 00:04
-
It is not needed, as Rubinius can give you s-expressions for ruby code out of the box and ParseTree only works for MRI. – Konstantin Haase May 05 '10 at 07:59