Reputation: 9
Facing compatibility issues between 'therubyracer-0.12.1', 'libv8-3.16.14.0' and 'v8'. Which gem versions will solve this issue?
Upvotes: 0
Views: 237
Reputation: 1460
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.
Upvotes: 0