#!/usr/bin/env ruby

begin
  require 'irb'
rescue LoadError
  abort "Error: you need to install irb to run this application."
end

$:.unshift "#{File.dirname(__FILE__)}/shell"
ENV["IRBRC"] = "#{File.dirname(__FILE__)}/shell/.irbrc"

IRB.start

