I'm trying to use the Mongoid / Devise Rails 3.1 template (Mongoid and Devise), and I keep getting an error stating ExecJS cannot find a JavaScript runtime. Fair enough when I didn't have any installed, but I've tried installing Node.js, Mustang and the Ruby Racer, but nothing is working.
I could not find a JavaScript runtime. See sstephenson/ExecJS (GitHub) for a list of available runtimes (ExecJS::RuntimeUnavailable
).
What do I need to do to get this working?
Just add ExecJS and the Ruby Racer in your gem file and run
bundle install
after.Everything should be fine after.
For amazon linux(AMI):
Don't Use RubyRacer as it is bad on memory. Installing Node.js as suggested by some people here is a better idea.
This list of available runtimes that can be used by ExecJs Library also documents the use of Node.js
https://github.com/sstephenson/execjs
So, Node.js is not an overkill, and much better solution than using the RubyRacer.
I had a similar problem: my Rails 3.1 app worked fine on Windows but got the same error as the OP when running on Linux. The fix that worked for me on both platforms was to add the following to my
Gemfile
:The trick is knowing that
:platforms => :ruby
actually means only use this gem with "C Ruby (MRI) or Rubinius, but NOT Windows."Other possible values for
:platforms
are described in thebundler
man page.FYI: Windows has a builtin JavaScript engine which
execjs
can locate. On Linux there is not a builtin although there are several available that one can install.therubyracer
is one of them. Others are listed in theexecjs
README.md.Adding the following gem to my Gemfile solved the issue:
Then bundle your new dependencies:
Add following gems in your gem file
and run
you are done :)