Skip to content

Instantly share code, notes, and snippets.

@danalexilewis
Last active August 29, 2015 14:24
Show Gist options
  • Save danalexilewis/ed60b9f1194d8f0cca43 to your computer and use it in GitHub Desktop.
Save danalexilewis/ed60b9f1194d8f0cca43 to your computer and use it in GitHub Desktop.
.irbrc for autocompletion and pretty print
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