Omniauth in Rails 3.1.rc4

I am using the latest version of rails, starting a new application, which I will deploy in 3.1 after its release, and I cannot get omniauth to work. If I just add omniauth to my Gemfile, it merges, but when I run rake or rails s or almost any command, it gives an error:

no such file to load -- omniauth/password

Any ideas why? Is there a branch or fork running on Rails 3.1? Or is it just me having this problem?

+5
source share
3 answers

I found the accompanying message regarding rails 3.1 (about 2 weeks ago):

Omniauth Mongoid, Rails 3.1, repo https://github.com/RailsApps/rails3-application-templates , Rails 3.1 . repo .

, , , , Omniauth/Rails 3.1.

+5

, omniauth. , :

gem 'omniauth', ' >= 0.2.6'

+22

If gem 'omniauth', '> = 0.2.6' conflicts with other gems (the nokigiri version is too small in this version) than installing omniauth from github. So in your gemfile put:

gem 'omniauth' ,: git => 'git: //github.com/intridea/omniauth.git'

+5
source

All Articles