I add this to Gemfile:
gem 'omniauth-facebook'
Then I run bundle update
. No problem so far. But when I run rails server
I get this error:
Could not find hashie-1.2.0 in any of the sources
Run `bundle install` to install missing gems.
I thought that bundler was supposed to resolve and satisfy all dependencies, but I tried this anyway:
gem install hashie-1.2.0
Which gave this:
ERROR: Could not find a valid gem 'hashie-1.2.0' (>= 0) in any repository
ERROR: Possible alternatives: hashie-model
I'm new to Rails and I feel I'm at a dead end. Suggestions?
UPDATE: I also have run bundle install
(to be exact bundle install --without production
) several times. I get the same error when running rails server
after that.
UPDATE: I aslo tried adding gem 'hashee'
in the Gemfile before omniauth-facebook. No luck.