Вы можете добавить before_filter
:
class ApplicationController < ActionController::Base
before_filter :authenticate
def authenticate
redirect_to :login unless User.find_by_provider_and_uid(auth["provider"], auth["uid"])
end
...
end
, предполагающие:
1. Вы определили страницу входа со ссылками, например: <%= link_to "Sign in with Facebook", "/auth/facebook" %>
См. Также RailsCasts с тегом аутентификации