How to (Easily) Debug a Rails Application
Hello all you party people! This article will show you how you can easily debug your Rails code.
If you're using the default Rails Rack server, Webrick - the best debugging tool I've been able to find out there is pry. Its use is pretty straightforward:
First off you'd need to add the pry
gem to your Gemfile
. Since this is used for development purposes, it should be added in the :development
group:Read more