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

learn more… | top users | synonyms

0
votes
0answers
34 views

jRuby and Rubinius support parallel computing, but what about gems that don't support this?

What I'm trying to understand is, practically speaking, how much benefit do I get from the parallel computing support in jRuby / Rubinius? A lot of ruby libraries keep track of global internal state. ...
0
votes
1answer
76 views

“\xC2” to UTF-8 in conversion from ASCII-8BIT to UTF-8

I have a rails project that runs fine with MRI 1.9.3. When I try to run with Rubinius I get this error in app/views/layouts/application.html.haml: "\xC2" to UTF-8 in conversion from ASCII-8BIT to ...
0
votes
1answer
86 views

What's the difference between rbx-2.0.0-rc1 and rbx-2.0.0-dev?

On rbenv (ruby-build), what's the difference between rbx-2.0.0-rc1 and rbx-2.0.0-dev? I came across https://twitter.com/veganstraightedge/status/315641493245267969 , but that made me more, rather ...
0
votes
0answers
82 views

Parsing error undefined conversion for character from UTF-8 to ASCII-8BIT

In reading a JSON file in Rubinius I get: undefined conversion for '"<p>On a very cold morning, it was -8°F. As the day went on, the temperature rose 2 degrees each hour. Which equation shows ...
0
votes
0answers
105 views

Install Rubynius in Windows 8

I have being trying to install rubini.us in Windows 8 which I assume acts as Windows 7 for these matters. AFter following the instructions in the web about the trying the cygwin and msmingw and gcc ...
1
vote
1answer
104 views

Change Rubinius Ruby Version

Is there anyway to change the Ruby version that Rubinius (rbx) uses by default without having to specify the option each time by a flag?: rbx -X19
0
votes
1answer
48 views

Rubinius Syntax Errors

While working with LocomotiveCMS using Rubinius I ran into a bunch of syntax errors. All were along the lines of expecting '|'. No one was posting issues about this so I figured I would ask: How do I ...
1
vote
1answer
75 views

Cross-Implementation Deterministic Array#shuffle

It is possible to pass a random number generator to Array#shuffle that makes the shuffle deterministic. For example, in MRI 1.9.3p327: [1, 2, 3, 4].shuffle(random: Random.new(0)) # => [1, 2, 4, ...
0
votes
2answers
209 views

Can't gem install Celluloid using Rubinius 2.0.0

I have rvm set to # .rvmrc rvm use rbx-2.0.0-rc1 and it sets the version correctly $ ruby -v rubinius 2.0.0rc1 (1.8.7 release 2012-11-02 JI) [x86_64-apple-darwin12.2.1] when I try to $ gem ...
2
votes
3answers
600 views

Adding a “source” attribute to ruby objects using Rubinius

I'm attempting to (for fun and profit) add the ability to inspect objects in ruby and discover their source code. Not the generated bytecode, and not some decompiled version of the internal ...
0
votes
1answer
109 views

Installing Rubinius 2.0.0-rc1 on CentOS 6.3 - it complains no libyaml found though i installed it

Please do not advise RVM related solutions, I do not use it. I'm installing Rubinius from source. I've previously installed libyaml in /usr/local. Any of the following attempts detailed below fail ...
0
votes
2answers
60 views

How to Upgrade Ruby 1.8.7 to 1.9.2 in Rubinius

When I compile "ruby -v" command it returns, rubinius 2.0.0dev (1.8.7 78652b58 yyyy-mm-dd JI) [x86_64-apple-darwin11.4.2] How should I upgrade ruby 1.8.7 to 1.9.2 ? Should I remove rubinius ? ...
4
votes
2answers
552 views

Rubinus or MRI 1.9.3 (YARV)?

So, I have a few questions that I have to ask, I did browse the internet, but there weren't too many reliable answers. Mostly blog posts that would cancel each-other out because they both praised ...
4
votes
1answer
88 views

How do I cleanly remove rubinius?

I used http://railsinstaller.org/ to install a bunch of packages. Then I created a rails app by calling rails new myApp and then rails serverbut unfortunately I got this error: Click Here So I think ...
0
votes
0answers
81 views

serialport gem doesn't work with Rubinius

I am working on a project where I have to evaluate some MIDI information and use an Arduino board to drive a digitally-addressable LED strap. To get satisfying results, standard MRI Ruby is not fast ...
2
votes
2answers
72 views

How to compare Rails ''executables" before and after refactor?

In C, I could generate an executable, do an extensive rename only refactor, then compare executables again to confirm that the executable did not change. This was very handy to ensure that the ...
0
votes
1answer
225 views

FuckItJS equivalent for Ruby

FuckItJS Javascript Error Steamroller FuckItJS uses state-of-the-art technology to make sure your javascript code runs whether your compiler likes it or not. Technology ...
0
votes
1answer
100 views

GzipReader each_line method missing in Rubinius

I am trying to read a gzipped file using Zlib:GzipReader. This works as expected using ruby 1.9.3 but I am getting a method_missing error for each_line when using Rubinius. Is there any way to read a ...
0
votes
1answer
201 views

Capistrano + RVM rvm_install_ruby with Rubinius

I am trying to fully automate the setup of my deployment host, and so avoiding manual install of Ruby. I am using capistrano-rvm as it promises to do the job, but I have a problem when RVM compiles ...
3
votes
2answers
114 views

Rubinius: how to generate enumerator as the official way?

I have this simple code to generate a lazy array: lazy_arr = Enumerator.new { |y| i = 1 loop { y << i i+=1 } } p lazy_arr.take(5) In official Ruby 1.9.3, the ...
8
votes
2answers
176 views

What values for RUBY_ENGINE correspond to which Ruby implementations?

The method I know of to detect the Ruby implementation (e.g., MRI, JRuby, Rubinius, etc.) at run time is to check the global constant RUBY_ENGINE: $ ruby -e 'puts RUBY_ENGINE' ruby What's a ...
3
votes
2answers
449 views

How can I redefine Fixnum's + (plus) method in Ruby and keep original + functionality?

This throws me a SystemStackError in 1.9.2 Ruby (but works in Rubinius): class Fixnum def +(other) self + other * 2 end end but there is no super for + (based on other errors). How can I ...
0
votes
1answer
49 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 ...
2
votes
1answer
108 views

Where are mixins implemented in Rubinius?

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
2answers
231 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 ...
0
votes
1answer
199 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 ...
3
votes
3answers
687 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 ...
1
vote
1answer
152 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
536 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 ...
2
votes
1answer
97 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
144 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__", ...
9
votes
1answer
462 views

What are the advantages of using rubinius [closed]

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/
7
votes
7answers
880 views

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

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 ...
0
votes
2answers
169 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 ...
4
votes
5answers
417 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 ...
1
vote
2answers
187 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 ...
2
votes
2answers
904 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 ...
7
votes
4answers
829 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: ...