17

$ bundle install

Errno::ENOENT: No such file or directory @ rb_sysopen - /Users/Sean/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/eventmachine-1.0.3/ext/gem_make.out

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

$ gem list

eventmachine (1.0.3 x86-mingw32)

$ gem build eventmachine -v 1.0.3

ERROR:  While executing gem ... (Gem::CommandLineError)
Too many gem names (eventmachine, 1.0.3); please specify only one
techdreams
  • 5,371
  • 7
  • 42
  • 63
Shion Yamaguchi
  • 601
  • 2
  • 8
  • 16

3 Answers3

39

Try to edit Gemfile.lock and change eventmachive version from 1.0.3 to 1.0.4. This works for me.

Andrey
  • 513
  • 5
  • 9
8
  • bundle update
  • bundle install Hope this will work.
Aathi
  • 2,599
  • 2
  • 19
  • 16
3

I had a similar issue with eventmachine -v '1.0.4' and i resolved it like this.

gem install eventmachine -v '1.0.4'  -- --with-cppflags=-I/usr/local/opt/openssl/include
techdreams
  • 5,371
  • 7
  • 42
  • 63