What exactly is a Ruby binding?
If you're a Ruby developer, you might have encountered something like the following: binding.pry binding.irb binding.break If your code runs one of these expressions, the execution will halt, and a REPL session will start from that context. Have you ever wondered what a "binding" is exactly? Or how to use one? I'm hoping to answer both questions here, so let's go!

If you're a Ruby developer, you might have encountered something like the following:
binding.pry
binding.irb
binding.break
If your code runs one of these expressions, the execution will halt, and a REPL session will start from that context.
Have you ever wondered what a "binding" is exactly? Or how to use one? I'm hoping to answer both questions here, so let's go!