author | Mahlon E. Smith <mahlon@martini.nu> |
Mon, 02 Sep 2013 02:22:21 -0700 | |
changeset 0 | 80c32ef237c6 |
permissions | -rw-r--r-- |
0 | 1 |
#!rake |
2 |
# vim: set nosta noet ts=4 sw=4: |
|
3 |
||
4 |
require 'rake' |
|
5 |
require 'pathname' |
|
6 |
||
7 |
BASEDIR = Pathname.new( __FILE__ ).expand_path.dirname.relative_path_from( Pathname.getwd ) |
|
8 |
||
9 |
task :default => [ :run ] |
|
10 |
||
11 |
desc "Compile and run the application" |
|
12 |
task :run do |
|
13 |
sh 'tidebuilder.py', '-t', 'bundle', '-vd', '/tmp/', '-n', '.', '-r' |
|
14 |
end |
|
15 |