-
Notifications
You must be signed in to change notification settings - Fork 0
Cool Stuff We Learned
Venetya Evans edited this page Jul 26, 2017
·
9 revisions
- byebug
- pry - a repl gem used for troubleshooting http calls: place this code in the action block in your controller:
binding.pry
it creates a breakpoint where local variables can be evaluated. Many more uses. Learn more here: http://pryrepl.org/
http://localhost:3000/rails/info/routes
<%= debug(params) if Rails.env.development? %>