I typed the following:
gem install omniauth
In my file environment.rb, I also have:
config.gem "omniauth"
However, I get the following errors:
no such file to load
Missing these required gems:
omniauth
I am confused: I make a rake: I install and do not receive an error (I also do not receive a message). But then I try to run script / server, and it says that I need to do rake gke: install!
When I remove config.gem "omniauth" from environment.rb, I get the following:
c:/Ruby187/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:443:in `load_missing_constant': unin
itialized constant OmniAuth (NameError)
source
share