#!/usr/bin/env ruby # encoding: UTF-8 require 'app42' require 'app42/command/client' # resolve bin path, ignoring symlinks require "pathname" bin_file = Pathname.new(__FILE__).realpath # add self to libpath $:.unshift File.expand_path("../../lib", bin_file) # start up the app42 App42::Command::Client.app42(*ARGV)