Last active
August 29, 2015 14:24
-
-
Save danalexilewis/ed60b9f1194d8f0cca43 to your computer and use it in GitHub Desktop.
.irbrc for autocompletion and pretty print
This file contains 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
def load (required_gem) | |
begin | |
gem required_gem | |
rescue LoadError | |
system("gem install " + required_gem) | |
Gem.clear_paths | |
end | |
require required_gem | |
end | |
load 'bond' | |
load 'what_methods' | |
require 'pp' | |
IRB.conf[:AUTO_INDENT]=true | |
Bond.start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment