0

Facing compatibility issues between 'therubyracer-0.12.1', 'libv8-3.16.14.0' and 'v8'. Which gem versions will solve this issue?

  • This question may solve your issue http://stackoverflow.com/questions/23536893/installing-libv8-and-therubyracer-gems-on-mavericks-with-system-v8-installation – aaron-coding Aug 03 '15 at 18:29

1 Answers1

0

This has worked for me a few times when battling with this problem.

Install libv8 manually in the terminal -with system:

gem install libv8 -v '3.16.14.3' -- --with-system-v8

Do the same for therubyracer

gem install therubyracer

Then include therubyracer as usual in your Gemfile.

nextstep
  • 1,399
  • 3
  • 11
  • 26