Lenart Rudel
Joined
1,430 Experience
14 Lessons Completed
0 Questions Solved
Activity
Posted in User_signed_in? doesnt work
It would certainly help if you'd provide some of the actual code. The error you're having is that the method user_signed_in?
does not exist.
Here are some points I'd suggest you check:
- what is the Devise resource? is it setup correctly? did you run the generators
- check
routes.rb
for something likedevise_for :users
- if it's not there then the Devise setup is missing - try running
bundle install
and restarting your server (if you haven't already) - check that you call
before_action :authenticate_user!
(typically from yourApplicationController
Posted in Deploying Sidekiq To Heroku Discussion
In the video you switched capitalization for the config option - for puma it should be `-C` while sidekiq expects `-c`.
Nice intro into metaprogramming and how concerns can be used.
I'm one of the fresh subscribers and have noticed one thing: no need to quit rails console to clear the console output. To save couple of seconds you can just press cmd + K in terminal (also from rails console) and you're good to continue.