-
Notifications
You must be signed in to change notification settings - Fork 5
/
Buildfile
30 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
# ===========================================================================
# Project: Scui-sampleapp/
# Copyright: ©2009 My Company, Inc.
# ===========================================================================
# Add initial buildfile information here
config :all, :required => :sproutcore
# CORE FRAMEWORKS
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 standard_theme empty_theme).each do |target_name|
config target_name,
:required => [], :test_required => [], :debug_required => []
end
# CONFIGURE THEMES
config :standard_theme,
:theme_name => 'linkit-theme',
:test_required => ['sproutcore/testing'],
:debug_required => ['sproutcore/debug']
# This configuration section will be applied to all bundles used by your
# application, even bundles that come from other gems.
config :family_tree do |c|
c[:required] = [:sproutcore, :scui]
c[:theme] = :standard_theme
end