Skip to content

Instantly share code, notes, and snippets.

@bernardo-cs
Created February 27, 2015 11:19
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save bernardo-cs/9e74994330d58dde17fa to your computer and use it in GitHub Desktop.
Save bernardo-cs/9e74994330d58dde17fa to your computer and use it in GitHub Desktop.
Pryrc alias
Pry.config.editor = "vim --noplugin"
if defined?(PryByebug)
Pry.commands.alias_command 'c', 'continue'
Pry.commands.alias_command 's', 'step'
Pry.commands.alias_command 'n', 'next'
Pry.commands.alias_command 'f', 'finish'
Pry.commands.alias_command 'b', 'break'
Pry.commands.alias_command 'bda', 'break --disable-all'
end
if defined? PryRescue
Pry.commands.alias_command 'ta', 'try-again'
Pry.commands.alias_command 'rc', 'reload-code'
end
Pry.commands.alias_command 'et','edit temp.rb'
Pry.commands.alias_command 'l','whereami'
Pry.commands.alias_command 'e','exit'
Pry.commands.alias_command 'ed','edit'
Pry.commands.alias_command 'r','reload-code'
# Hit Enter to repeat last command
Pry::Commands.command /^$/, "repeat last command" do
_pry_.run_command Pry.history.to_a.last
end
# Rails shortcuts
if Rails
## allows: routes.recognize_path "/station/index/42.html"
## and: routes.generate :controller => :station, :action=> :index, :id=>42
routes = Rails.application.routes
end
## Better colours
Pry.config.color = true
Pry.config.theme = "solarized"
Pry.config.ls.separator = "\n" # new lines between methods
Pry.config.ls.heading_color = :magenta
Pry.config.ls.public_method_color = :green
Pry.config.ls.protected_method_color = :yellow
Pry.config.ls.private_method_color = :bright_black
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment