Rakefile
changeset 0 80c32ef237c6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Rakefile	Mon Sep 02 02:22:21 2013 -0700
@@ -0,0 +1,15 @@
+#!rake
+# vim: set nosta noet ts=4 sw=4:
+
+require 'rake'
+require 'pathname'
+
+BASEDIR = Pathname.new( __FILE__ ).expand_path.dirname.relative_path_from( Pathname.getwd )
+
+task :default => [ :run ]
+
+desc "Compile and run the application"
+task :run do
+	sh 'tidebuilder.py', '-t', 'bundle', '-vd', '/tmp/', '-n', '.', '-r'
+end
+