VenkataYaparla
VenkataYaparla

Reputation: 9

Compatibility issues between therubyracer and libv8

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

Answers (1)

nextstep
nextstep

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

Related Questions