Remove therubyracer because of the following reasons:

* therubyracer is unstable between platforms, platform versions, ruby interpreters and even ruby versons.
  Pretty much everytime there's native extension compilation issue, it is therubyracer.
* therubyracer is officially discouraged by heroku as it uses lot of memory. On the other hand node.js advertises itself as very lightweight.
* using therubyracer on server is just like installing Node that can be used only by ruby apps (you're using v8 anyway)
* btw. node.js is necessary only on Windows and Ubuntu development, on Mac development ExecJS is using JavaScriptCore.

catched from https://github.com/sheerun/rails4-bootstrap/issues/18
This commit is contained in:
Artem Chernikov 2014-07-12 12:49:58 +02:00
parent 50e75c6dd4
commit 4c08850786
2 changed files with 0 additions and 9 deletions

View file

@ -82,9 +82,6 @@ gem 'font-awesome-rails'
#Use Redcarpet for Markdown in description
gem 'redcarpet'
# Rubyracer is JavaScript Runtime of choice
gem 'therubyracer'
# FIXME: We should use http://weblog.rubyonrails.org/2012/3/21/strong-parameters/
gem 'protected_attributes'