Skip to content

Instantly share code, notes, and snippets.

@jwarner112
jwarner112 / pry.md
Last active June 11, 2020 18:51 — forked from lfender6445/gist:9919357
Pry (Ruby REPL) Cheatsheet

Pry Cheat Sheet

Command Line

  • pry -r ./config/app_init_file.rb - load your app into a pry session (look at the file loaded by config.ru)
  • pry -r ./config/environment.rb - load your rails into a pry session

Debugger

  • help ls -- Display command options for pry command ls
  • ls -- Show all of the available methods that can be called by an object