Skip to content

Instantly share code, notes, and snippets.

@ejschmitt
Created June 29, 2009 00:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ejschmitt/137414 to your computer and use it in GitHub Desktop.
Save ejschmitt/137414 to your computer and use it in GitHub Desktop.
# .irbrc
require 'rubygems'
begin
# load wirble
require 'wirble'
# start wirble (with color)
Wirble.init
Wirble.colorize
rescue LoadError => err
warn "Couldn't load Wirble: #{err}"
end
begin
require 'hirb'
Hirb.enable :pager=>false
rescue LoadError => err
warn "Couldn't load Hirb: #{err}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment