Ruby on Rails Monday, January 23, 2012

On Jan 23, 2:24 am, "Mark F." <li...@ruby-forum.com> wrote:
> I am having trouble with the Ruby on Rails for a windows 7 PC.
>
> During the installation on Ruby it said missing file 'lib'
>
> Then every time I try to generate a scaffold or controller it says
>  Could not find a JavaScript runtime. Seehttps://github.com/sstephenson/execjsfor a list of available runtimes.
> (ExecJS: :RuntimeUnavailable)
>

For some reason exejs is failing to find "cscript" (The default
Windows JavaScript script engine) in your system.

You can workaround that by installing latest Node.JS from here:

http://blog.nodejs.org/2012/01/19/node-v0-6-8/

(Use the MSI installer)

After you installed, close all the Command Prompt windows you have
open and open them again, which will update the PATH so node.exe is
accessible.

You can verify it worked by doing:

C:\>node --version
v0.6.8

That should be the output.

After that ExecJS should be working properly.

--
Luis Lavena

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment