Created
June 15, 2012 18:03
-
-
Save jordanandree/2937896 to your computer and use it in GitHub Desktop.
awesome_print as default for Rails console
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
## Gemfile | |
group :development do | |
gem "awesome_print", :require => "ap" | |
end | |
## ~/.irbrc | |
require "rubygems" | |
require "ap" | |
unless IRB.version.include?('DietRB') | |
IRB::Irb.class_eval do | |
def output_value | |
ap @context.last_value | |
end | |
end | |
else # MacRuby | |
IRB.formatter = Class.new(IRB::Formatter) do | |
def inspect_object(object) | |
object.ai | |
end | |
end.new | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment