#!/usr/bin/env ruby if ARGV[0] == "console" $:.unshift(File.expand_path("lib", Dir.pwd)) require 'boot' require 'irb' ARGV.clear IRB.start(Sharp.root) else $stderr.puts "Unknown command" exit 1 end