AkiraKan
AkiraKan

Reputation: 39

Ruby On Rails: therubyracer x86-mingw32 missing gems

when I tried to start Server with command rails -s that throw an error:

Could not find gem 'therubyracer x86-mingw32' in any of the gem sources listed i n your Gemfile. Run bundle install to install missing gems.

I also try with

gem install 
gem update ...

but no effect

my gem file:

gem 'therubyracer', group: :production

I don't know why that can not run! but run with another project is OK. how can I resolve this?

Upvotes: 0

Views: 594

Answers (1)

Shannon
Shannon

Reputation: 3018

You can run bundle install --without production to skip that gem being installed for development.

Upvotes: 1

Related Questions