I'm wondering if it's possible to start a Byebug session giving a starting point from a Rails console. I know I can insert a byebug
statement wherever I want and start debugging, but I'd like to do something like this:
Byebug.start do
# entry point
User.find(12).problematic_method
end
Thanks.