#!/usr/bin/env ruby path = __FILE__ while File.symlink?(path) path = File.expand_path(File.readlink(path), File.dirname(path)) end $:.unshift(File.join(File.dirname(File.expand_path(path)), '..', 'lib')) require 'intent' Intent::Dispatcher.exec_command(:project, ARGV.dup)