Tagged Questions
YARV (Yet another Ruby VM) is a bytecode interpreter for the Ruby programming language developed by Koichi Sasada and has become the official Ruby interpreter for Ruby 1.9.
7
votes
1answer
134 views
Does Ruby's Enumerable#zip create arrays internally?
In Ruby - Compare two Enumerators elegantly, it was said
The problem with zip is that it
creates arrays internally, no matter
what Enumerable you pass. There's
another problem with length of ...
7
votes
4answers
668 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:
...
2
votes
1answer
315 views
Documentation on RubyVM::InstructionSequence?
With Ruby 1.9, the YARV-VM was merged into Ruby. So http://www.atdot.net/yarv seems to be outdated.
Where can I find documentation on RubyVM::InstructionSequence?
Especially on #compile_file?
Where ...
1
vote
1answer
147 views
Is it possible to disable YARV's global interpreter lock?
This is more curiosity than anything else (I should totally drop that and try jRuby), but is it possible to disable YARV ruby's global interpreter lock and any other associated locks?
I assume this ...
1
vote
1answer
316 views
How to generate bytecode in Ruby 1.9?
How can I generate byetcode from Ruby 1.9??
My intent is to generate bytecode not the source code and ship it along with my application package. I am aware of the JRuby approach but I am facing ...
1
vote
3answers
2k views
RVM 1.9.1 & nokogiri
Having trouble installing the nokogiri gem under rvm ruby 1.9.1.
gem install nokogiri
I'm getting ...
/usr/include/libxml2... no
libxml2 is missing. try 'port install libxml2' or 'yum install ...
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 ...
0
votes
1answer
1k views
How to diagnose/trace “sendsig: useracc failed.” problem in HP-UX
I am trying to compile Ruby 1.9.1-p0 on HP-UX. After a small change to ext/pty.c it compiles successfully, albeit with a lot of warning messages (about 5K). When I run the self-tests using "make ...
-1
votes
3answers
577 views
Disabling Ruby 1.9.x's YARV compiler
There is a very noticeable difference in application initiation time between running my specs from the command line with ruby 1.9.x vs. 1.8.7. My application initiates much faster with ruby 1.8.7 ...