Is there a good way to run a script and see all the steps:
- What code is executed
- Which file is in
- What does he return
- Error messages
This will be a good way to find out how an open source project works.
Are there no such solutions for Ruby?
Eg.
require "httparty" HTTParty.get "http://www.google.se"
Then it will run the code and show me all the code that it runs, in which the file and line, the returned objects, error messages, etc.
debugging ruby open-source tracing
never_had_a_name
source share