-
Notifications
You must be signed in to change notification settings - Fork 3
/
Buildfile
31 lines (25 loc) · 1.02 KB
/
Buildfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# ===========================================================================
# Project: Smartgraphs
# Copyright: ©2010 Concord Consortium
# Author: Richard Klancer <[email protected]>
# ===========================================================================
require File.expand_path('../frameworks/jasmine-sproutcore/builders/jasmine_builder', __FILE__)
config :all, :required => [:sproutcore]
config :smartgraphs,
:required => ['sproutcore/statechart', 'raphael_views/raphael_views', 'raphael_views/g_raphael', 'cc/cc'],
:load_fixtures => true,
:theme => :pig
config 'raphael_views/raphael_views',
:required => 'raphael_views/raphael'
config 'raphael_views/g_raphael',
:required => 'raphael_views/g_raphael_base'
config 'raphael_views/g_raphael_base',
:required => 'raphael_views/raphael'
proxy '/db', :to => 'localhost:5984', :url => ''
proxy "/jnlp", :to => "localhost:4321"
namespace :build do
desc "builds a jasmine unit test"
build_task :test do
Jasmine::Builder::Test.build ENTRY, DST_PATH
end
end