If you install Ruby on Rails 3.1 the gem execjs gets installed by default. I excluded CoffeeScript, because I thought it needed execjs, but execjs wants to be installed anyway. Is execjs now a requirement for Ruby on Rails applications or is there a way to exclude this gem from an installation?

link|improve this question

67% accept rate
OK, I can answer my own question: execjs seems to be a requirement for uglifier and coffee-script. – Rainer Blessing May 10 '11 at 19:40
I'd still like to know how to install without execjs. – Larsenal May 24 '11 at 2:11
1  
Comment out uglifier and coffee-script in the Gemfile if you don't want to install execjs. – Rainer Blessing May 24 '11 at 8:34
Yahuda Katz posted this should be fixed in the final rails release. App in production will not require JS runtime. – Kliment Mamykin Jul 9 '11 at 4:10
@KlimentMamykin: can you provide a link for Yehuda's post? – Adam Spiers Jan 14 at 11:06
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted

If you comment out all gems relating to the asset pipeline from the Gemfile then execjs will not be installed (and this should work fine in production).

# Gems used only for assets and not required
# in production environments by default.
#group :assets do
#  gem 'sass-rails', "  ~> 3.1.0"
#  gem 'coffee-rails', "~> 3.1.0"
#  gem 'uglifier'
#end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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