Checkpoint.
* Got fonts working cross platform by only using SVG. This will change
with the new webkit engine when Tide 1.4 is released.
* Use the Tide API accessors for cross-window data.
* Make the ThingFish server object an observable, so models and their
URI bases can be changed easily.
* Add options for saving window state and position.
* Contextual menu updates/tests for later.
#!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