How do I create a conditional breakpoint in Byebug about a variable assignment? This is more an event than a condition. But how would you proceed if you do not know where in the code the assignment could happen?
Watching a variable in step by step manner isn't delivering results. I would need to watch it, until some arbitrary value is assigned to the identifier.
I only know that an Identifier is somewhere in the Rails program, maybe even in the initialization process, is assigned a value to. I don't know when or what. The "what" is what I want to find out. Is there a debugging solution?