I'm new to rails and i'm trying to do lazy registration found here http://blog.bignerdranch.com/1679-lazy-user-registration-for-rails-apps/ And i have some errors:
uninitialized constant AnonymousUser::ACCESSIBLE_ATTRS It's in my anonymous_user model
after adding
RetrospectionApp::Application.routes.draw do devise_for :users, controllers: {registrations: 'registrations'} resources :posts, path: '/' root to: 'posts#index' end
I see error
uninitialized constant RetrospectionApp
I don't understand this route section and model. Can someone explain a bit and show solution?