.pryrc 301 B

123456789
  1. # -*- ruby -*-
  2. lib = Dir['./lib/**/*.rb'].each(&method(:require))
  3. Pry.config.requires = lib
  4. Pry.config.prompt_name = "data_structures_rb_dev"
  5. Pry.config.editor = proc { |file, line| "emacsclient +#{line} #{file}" }
  6. Pry.config.auto_indent = false # Comment out when running repl outside emacs' shell