mustang
mustang copied to clipboard
(proof-of-concept) Awesome V8 JavaScript engine embedded into Ruby's shiny body.
The README.md mentions one should look for LICENSE for details. However, there is no such file. I digged from mustang.gemspec that it's the MIT license, but it would be best...
% git clone git://github.com/nu7hatch/mustang.git % cd mustang % rake compile [1/1] Isolating mocha (>= 0.9). Fetching: metaclass-0.0.1.gem (100%) Fetching: mocha-0.12.4.gem (100%) WARNING: 'require 'rake/rdoctask'' is deprecated. Please use 'require 'rdoc/task'...
``` $ gem install mustang -v '0.2.2' ... ... ... scons: done building targets. ------------------------------ checking for main() in -lv8... yes checking for main() in -lpthread... yes checking for string.h......
Hello. Since gem install mustang fails on recent linux versions (Ubuntu 11.10+, Arch, #15), i want to ask you to tag a new version with the fix you merged (2a3bcfbd9fd0f34e9b004fcd92188f326b40ec2a),...
I'm originally trying to install SpreeCommerce. I found out I need ExecJS. Then I found out I need a JS runtime, so I chose mustang. My system is 64-bit Ubuntu...
I am trying to install mustang for [Travis CI](http://travis-ci.org) execjs users, no luck so far. I did install scons as README requires. Can you please document other build dependencies? gem...
``` ruby-1.9.2-p180 :009 > Mustang::Context.new.eval("(function() { return \"\\0foo\"; }())").length => 0 ``` See cowboyd/therubyracer#78
V8 objects should inherit ruby natives, and include v8 base modules instead of inheriting v8 base classes and delegating method to native ruby object. There can be lot of work...