I\'m trying to add oauth2 with Google, following these instructions.
I\'m receiving the following error message starting the server:
Exiting You\'ve
Check config/initializers/omniauth.rb file and ensure that you have following content:
Rails.application.config.middleware.use OmniAuth::Builder do provider :google, 'Client_Id', 'Client_Secret' end
ensure that you exactly have the google provider (not github or facebook)