undefined метод `new_confirmation_path 'Модуль подтверждения Devise + MongoID

Я пытаюсь работать с Rails 3.1 + Devise Module : confirmable + MongoID с этим шаблоном:

https: //github.com/RailsApps/rails3-application-templates/raw/master/rails3-mongoid-devise-template.rb

Шаблон Mi работает нормально, но теперь у меня есть подтверждаемые представления с помощью следующей команды:

rails generate devise: views confirmable

Сгенерировать это:

invoke  Devise::Generators::SharedViewsGenerator
  create    app/views/confirmable/mailer
  create    app/views/confirmable/mailer/confirmation_instructions.html.erb
  create    app/views/confirmable/mailer/reset_password_instructions.html.erb
  create    app/views/confirmable/mailer/unlock_instructions.html.erb
  create    app/views/confirmable/shared
  create    app/views/confirmable/shared/_links.erb
  invoke  form_for
  create    app/views/confirmable/confirmations
  create    app/views/confirmable/confirmations/new.html.erb
  create    app/views/confirmable/passwords
  create    app/views/confirmable/passwords/edit.html.erb
  create    app/views/confirmable/passwords/new.html.erb
  create    app/views/confirmable/registrations
  create    app/views/confirmable/registrations/edit.html.erb
  create    app/views/confirmable/registrations/new.html.erb
  create    app/views/confirmable/sessions
  create    app/views/confirmable/sessions/new.html.erb
  create    app/views/confirmable/unlocks
  create    app/views/confirmable/unlocks/new.html.erb

Я поймаю следующую ошибку, чтобы обновить страницу:

NoMethodError в Devise / sessions # new

undefined method `new_confirmation_path' for #<#<Class:0xb94bb04>:0xb948b20>

11: <% end -%>
12: 
13: <%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
14:   <%= link_to "Didn't receive confirmation instructions?",     new_confirmation_path(resource_name) %><br />
15: <% end -%>
16: 
17: <%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email)     && controller_name != 'unlocks' %>

Почему не работают мои страницы входа, регистрации и т.

12
задан Triad sou. 1 October 2011 в 03:51
поделиться