RailsCasts Pro episodes are now free!

Learn more or hide this

Florian Unglaub's Profile

GitHub User: funglaub

Comments by Florian Unglaub

Avatar

I'd just like to point out, that Rails > 3.0.4 requires you to add an additional method to authentications_controller.rb:

ruby
  protected
  
  # This is necessary since Rails 3.0.4
  # See https://github.com/intridea/omniauth/issues/185
  # and http://www.arailsdemo.com/posts/44
  def handle_unverified_request
    true
  end