Last active
December 17, 2015 00:09
-
-
Save apux/5518318 to your computer and use it in GitHub Desktop.
my .pryrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#.pryrc | |
# Load plugins (only those I whitelist) | |
Pry.config.should_load_plugins = false | |
Pry.plugins["doc"].activate! | |
# Launch Pry with access to the entire Rails stack. | |
# If you have Pry in your Gemfile, you can pass: ./script/console --irb=pry instead. | |
# If you don't, you can load it through the lines below :) | |
rails = File.join Dir.getwd, 'config', 'environment.rb' | |
if File.exist?(rails) && ENV['SKIP_RAILS'].nil? | |
require rails | |
if Rails.version[0..0] == "2" | |
require 'console_app' | |
require 'console_with_helpers' | |
elsif Rails.version[0..0] == "3" or Rails.version[0..0] == "4" | |
require 'rails/console/app' | |
require 'rails/console/helpers' | |
include Rails::ConsoleMethods | |
ActiveRecord::Base.logger = Logger.new(STDOUT) | |
else | |
warn "[WARN] cannot load Rails console commands (Not on Rails2 or Rails3?)" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment