I''m trying to deploy my app using Capistrano, Bundler, and Rbenv. When
I
execute "cap deploy:update" I get get the following error when trying
to
precompile:
"Could not find a JavaScript runtime. See
https://github.com/sstephenson/execjs for a list of available runtimes."
failed: "env
PATH=$HOME/.rbenv/shims:$HOME/.rbenv/bin:$HOME/.rbenv/versions/1.9.3-p125/bin:/home/ari/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems:$PATH
sh -c ''cd /home/ari/www/tutelage/releases/20120504012619 &&
bundle exec
rake RAILS_ENV=production RAILS_GROUPS=assets assets:precompile''"
on
prodserv1
Does anyone know why? My Gemfile includes: execjs and therubyracer
My deploy.rb file includes:
require ''bundler/capistrano''
load ''deploy/assets''
default_run_options[:pty] = true
set :default_environment, { "PATH" =>
"$HOME/.rbenv/shims:$HOME/.rbenv/bin:$HOME/.rbenv/versions/1.9.3-p125/bin:$HOME/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems:$PATH"
}
Thanks.
Ari
--
Posted via http://www.ruby-forum.com/.
--
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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.
Johann Aman
2012-May-04 18:12 UTC
Re: Could not find a JavaScript runtime -- Bundler & Rbenv
AFAIK execjs and rubyracer are not JS runtimes themselves, only wrappers (though I may be wrong!). I got this error too, installed NodeJS on my server, and everything worked perfectly, so I made a conclusion, that NodeJS is suitable JS runtime for Rails:))) On May 3, 9:40 pm, Ari King <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> I''m trying to deploy my app using Capistrano, Bundler, and Rbenv. When I > execute "cap deploy:update" I get get the following error when trying to > precompile: > > "Could not find a JavaScript runtime. Seehttps://github.com/sstephenson/execjsfor a list of available runtimes." > > failed: "env > PATH=$HOME/.rbenv/shims:$HOME/.rbenv/bin:$HOME/.rbenv/versions/1.9.3-p125/b in:/home/ari/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems:$PATH > sh -c ''cd /home/ari/www/tutelage/releases/20120504012619 && bundle exec > rake RAILS_ENV=production RAILS_GROUPS=assets assets:precompile''" on > prodserv1 > > Does anyone know why? My Gemfile includes: execjs and therubyracer > > My deploy.rb file includes: > > require ''bundler/capistrano'' > > load ''deploy/assets'' > > default_run_options[:pty] = true > > set :default_environment, { "PATH" => > "$HOME/.rbenv/shims:$HOME/.rbenv/bin:$HOME/.rbenv/versions/1.9.3-p125/bin:$ HOME/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems:$PATH" > > } > > Thanks. > > Ari > > -- > Posted viahttp://www.ruby-forum.com/.-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org 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.