0

I just installed rails on OSX maverick for the first time today and am trying to make a new applications but it was missing gems and some file in the app that tried to make, I ran "Bundle install" and this error keeps popping up on terminal.

"An error occurred while installing atomic (1.1.16), and Bundler cannot continue. Make sure that gem install atomic -v '1.1.16' succeeds before bundling."

I am not sure what to do.

wellcole
  • 21
  • 1
  • 7

1 Answers1

0

JDK8 required for atomic gem. Try to switch to JDK8, or force rvm version:

$rvm get head
$rvm --force 2.0.0
$gem update
$gem install atomic

This is a similar Q: Error during rails install

Community
  • 1
  • 1
Vitalyp
  • 1,069
  • 1
  • 11
  • 20