rails-console-pry

Run Rails 3 console using pry without adding it to Gemfile.

If you want to add pry in your Rails app Gemfile and replace the IRB in console, use pry-rails instead.

Installation

gem install rails-console-pry

And install some pry plugins:

gem install pry-doc awesome_print

Usage

Use -r to add global gems before loading Bundler, e.g., run it in Rails root directory:

rails-console-pry -r pry-doc -r awesome_print

Or using production environment:

rails-console-pry production -r pry-doc -r awesome_print

See usage by rails-console-pry -h.

It is recommended to add an alias to load your favorite pry plugins:

alias rpry="rails-console-pry -r pry-doc -r awesome_print"

Contributing to rails-console-pry

Copyright © 2012 Ian Yang. See LICENSE.txt for further details.