#!/usr/bin/env ruby require 'shellwords' now=Time.now.strftime("%Y-%m-%d %H:%M:%S") if ARGV.empty? $stderr.puts "ERROR #{now} [wu ] -- Must provide a Wukong command to run. Try the --help option." else if ARGV.size == 1 && ARGV.first == '--help' $stderr.puts <" else Kernel.exec "bundle exec wu-#{Shellwords.join(ARGV)}" end end end