#!/bin/ruby
# this is just a little wrapper to start watobo with another command than watobo_gui.rb
if $0 == __FILE__
  inc_path = File.expand_path(File.join(File.dirname(__FILE__), "..", "lib")) # this is the same as rubygems would do
  $: << inc_path
end

path = File.dirname(File.expand_path(__FILE__))
require File.join(path, "watobo_gui")
