Tagged Questions

Rubinius is an implementation of the Ruby programming language using LLVM.

learn more… | top users | synonyms

7
votes
4answers
667 views

Which ruby interpreter are you looking forward to?

There are multiple Ruby implementations in the works right now. Which are you looking forward to and why? Do you actively use a non-MRI implementation in production? Some of the options include: ...
5
votes
1answer
256 views

What are the advantages of using rubinius

Could you give me some examples were is worth it use rubinius, like in this post: http://yehudakatz.com/2009/08/31/simplifying-rails-block-helpers-with-a-side-of-rubinius/
4
votes
7answers
359 views

How do you write a compiler for a language in that language? [closed]

Possible Duplicates: How can a language's compiler be written in that language? implementing a compiler in “itself” I was looking at Rubinius, a Ruby implementation that ...
3
votes
5answers
325 views

How can a language be interpreted by itself (like Rubinius)?

I've been programming in Ruby for a while now with just the standard MRI implementation of Ruby, but I've always been curious about the other implementations I hear so much about. I was reading about ...
2
votes
1answer
57 views

Where are mixins implemented in Rubinus?

Where in the Rubinius source is the code that is responsible for including modules?(Specifically, to place module as super class of object class.)
2
votes
1answer
83 views

Creating a language on the Rubinius VM

I'm looking to play around with the Rubinius VM to create a langauage, but just reading the documentation, I'm still quite lost on how to get started. Even looking at the projects, I still can't seem ...
2
votes
3answers
163 views

High performance calculations with Ruby?

My colleagues normally use C or Fortran for high performance calculations (math on large arrays of data). I wonder if there is any possibility for Ruby code to be compiled/converted and come close to ...
2
votes
1answer
68 views

Ruby interpreters, method execution

I'm doing some research into how different Ruby interpreters do method execution (e.g. when you call a method in ruby, what steps does the interpreter take to find and execute it, and which structures ...
2
votes
1answer
98 views

__respond_to_eh__ in Rubinius, eh?

In Rubinius, if you do rbx-head > Object.instance_methods.grep(/^_.*/) => ["__extend__", "__show__", "__marshal__", "__instance_of__", "__instance_variable_get__", "__send__", "__id__", ...
2
votes
2answers
563 views

Differences between Ruby VMs

What are the advantages/disadvantages of the major Ruby VMs (things like features, compatibility, performance, and quirks?) I know there are also some bonus features like being able to use Java ...
1
vote
1answer
84 views

Dying Actors in Rubinius or are threads/processes sandboxed?

I am looking into Rubinius (2.0+) and its actors library for parallel computing challenges. I am wondering what would happen if an actor for example eats up loads and loads of memory up to the point ...
1
vote
0answers
206 views

rubyencoder and rubinius

I am looking at Rubinius for quite some time now and I am trying my applications with it on a regular basis but things will be even more interesting once Rubinius 2.0 will be out with the removal of ...
1
vote
2answers
161 views

Is there an equivalent of isitruby19 for rubinius?

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 ...
0
votes
1answer
19 views

Preloading Method Dispatch Cache via Early Calls?

Caching is the usual strategy that VMs use to make dynamic method dispatch rival that of static "v-table" based method lookup. Can we take advantage of this to intelligently "pre-call" methods on ...
0
votes
1answer
55 views

Rubinius does not recognize methods in the File class

I have a project that has alot of file manipulation. I am trying out Rubinius because I need to be able to compile the code. When I try to run code that includes if Dir.exist?(file_path) I get ...
0
votes
2answers
149 views

Do all Ruby interpreters follow the same Ruby syntax?

Do all Ruby interpreters follow the same Ruby syntax defined in www.ruby-lang.org? MRI YARV Rubinius JRuby IronRuby Cause it is the interpreter that defines the Ruby language. Does that mean one ...