-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuildfile
More file actions
24 lines (19 loc) · 1.05 KB
/
Buildfile
File metadata and controls
24 lines (19 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# ===========================================================================
# Project: ThothApp
# ===========================================================================
config :'Thoth-SC', :required => [:sproutcore]
config :scui, :required => [:sproutcore, :'scui/drawing', :'scui/linkit']
# SPECIAL FRAMEWORKS AND THEMES
# These do not require any of the built-in SproutCore frameworks
%w(testing debug sc_theme empty_theme).each do |target_name|
config target_name,
:required => [], :test_required => [], :debug_required => []
end
# CONFIGURE THEMES
config :sc_theme,
:theme_name => 'sc-theme',
:test_required => ['sproutcore/testing'],
:debug_required => ['sproutcore/debug']
config :thoth_app, :required => [:sproutcore, "sproutcore/amber", "sproutcore/forms", "sproutcore/animation", "sproutcore/statechart", :scui, :'Thoth-SC'], :theme => :sc_theme
# Uncomment this line when running with Thoth/XHRPollingDataSource (not needed for WebsocketsDataSource); Also, this is needed when uploading is used.
proxy '/thoth', :to => 'localhost:8080'