Błąd routingu - niezainicjowana stała

Nie mogłem tego naprawić w Rails 3.2.12, może coś mi brakuje.

config / routes.rb

get "home/index"
root :to => "home#index"
devise_for :users, :only => :omniauth_callbacks
match 'users/auth/:provider/callback' => 'authentications#create'
match '/auth/:provider/signout' => 'authentications#signout'

app / controllers / authentication_controller.rb

class AuthenticationsController < ApplicationController
  ...
end

app / models / authentication.rb

class Authentication < ActiveRecord::Base
  ...
end

Myślę, że to powinno działać z moją obecną wiedzą, ale jest coś, za czym tęsknię.

Moim miłym pytaniem byłoby powiedzieć, co jest nie tak, proszę.

Błąd liczenia

uninitialized constant AuthenticationsController

To jest wiadomość, która pojawia się nahttp://localhost:3000/auth/facebook/signout

questionAnswers(3)

yourAnswerToTheQuestion