Ada-Developers-Academy / classroom-app

Application for tracking and providing feedback on Ada student PRs
http://classroom.adadevelopersacademy.org/
2 stars 5 forks source link

Upgrade debugging tools #43

Closed Hamled closed 7 years ago

Hamled commented 7 years ago

• Swap out pry and byebug for pry-byebug which gives all of the capabilities of byebug (step-by-step and stack navigation) inside of the pry CLI.

• Add pry-rescue which can trigger pry automatically on any unhandled exception (or test failure when combined with minitest).

• Remove explicit dependency on binding_of_caller because it's already included by other dependencies which we use more explicitly.

kariabancroft commented 7 years ago

Excellent decisions to upgrade these tools! Thank you for sharing your reasoning on each piece.