Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just created an empty application and only generated a StaticPages controller with home, help, about, and contact options, but when I access localhost:3000/static_pages/home, I get an error:

ExecJS::RuntimeError in Static_pages#home

Showing [...]views/layouts/application.html.erb where line #6 raised:


  (in [...]/app/assets/javascripts/static_pages.js.coffee) Extracted source (around line #6):

3: <head> 
4:   <title>TodolistApp</title> 
5:   <%= stylesheet_link_tag "application", :media => "all" %> 
6:   <%= javascript_include_tag "application" %> 
7:   <%= csrf_meta_tags %> 8: </head> 9: <body> Rails.root: [..]

Application Trace | Framework Trace | Full Trace app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__694989846_43803828'

I've looked at a few stackoverflow articles on this same problem, and some recommended installing Node.js, which I have done, but it hasn't done anything. Just to be clear, I have not added any code to any of the static pages views, nor have I added any javascript anywhere.

Also, something interesting is that if I take out line 4 ( <%= javascript_include_tag "application" %>) there is no error. But I assume that if I take this out, the I can't add javascript.

I'd appreciate any help, thanks!

share|improve this question
Did you restart the rails server after installing node? – Cluster Feb 27 at 14:34
1  
This ExecJS error is raised mostly because of a syntax error in Coffee Script, static_pages.js.coffee seems to be the source of the problem. – MrYoshiji Feb 27 at 14:34
@MrYoshiji My static_pages.js.coffee is completely empty (this is a new project, I have added almost nothing). – bhsu Feb 27 at 14:37
@Cluster After I installed Node.js, I did restart the rails server. Just to clarify, when I say install Node.js, I just ran the msi installer that I downloaded online. I didn't have to import it into raisl right? – bhsu Feb 27 at 14:39
Is it available in your path. I'm pretty sure ExecJS is simply going to want to be able to run js from the command line. Your on windows? Doesn't MS bundle a js runtime that ExecJS can use? I was under the impression only linux users had to install a JS runtime for ExecJS – Cluster Feb 27 at 14:43
show 5 more comments

2 Answers

Try to use "gem 'therubyracer'" in your Gemfile, with installed "therubyracer_for_windows" I did the following (windows 8 64x): 1. Download gem + dll from https://github.com/hiranpeiris/therubyracer_for_windows 2. install this gem (gem instal ...) and move dll-files to "ruby\bin" 3. restart server (rails s, optionally) 4. Then "bundle install" with "gem 'therubyracer'" in my Gemfile works well

Example: "Using sqlite3 (1.3.7) Using therubyracer (0.11.0beta1) Using uglifier (1.3.0) Using webrat (0.7.1) Your bundle is complete! Use bundle show [gemname] to see where a bundled gem is installed."

share|improve this answer
Can you elaborate on your answer as to how to use this gem? Some examples would make your answer much stronger. – slm Feb 27 at 16:00
So are you referring to including in the gem file, then doing "bundle install"? Or do I have to do more ("gem install therubyracer")? – bhsu Feb 27 at 20:10

Add this to your gemfile

gem 'therubyracer', :platform => :ruby
gem 'execjs'

Try this,it might works for you. I got somewhat similar error,i resolved using this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.