Familiarize yourself with common Ruby idioms and debugging tools
Welcome to the Ruby Debugging repository. The goal of this repository is to get
you familiar with common debugging tools and idioms. At the end of it I hope you
will have a better understanding of Ruby itself.
Each exercise will present new idioms or reinforce existing ones.
Topics covered:
3.1.0
or higherbundle install --path vendor/bundle
cd 01/
bundle exec ruby main.rb
Warning
Do not forget tobundle install --path vendor/bundle
and to run the examples withbundle exec
Every problem has an associated README.md
file with instructions and hints. Pay special attention to the “New concepts” section and try to replicate thre commands since it will introduce new concepts that you might not be familiar with and will help you through your debugging journey.
Warning
Do not forget tocd
into each challenge folder.
Every solved exercise should include the following output.
Framework: Ruby
Version: 3.2.2
Workshop: Ruby debugging