forked from robotlegs/robotlegs-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rakefile.rb
64 lines (55 loc) · 2.04 KB
/
rakefile.rb
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Dir.glob('rakefiles/*.rb').each { |r| import r }
require 'sprout'
# Optionally load gems from a server other than rubyforge:
# set_sources 'http://gems.projectsprouts.org'
sprout 'as3'
############################################
# Configure your Project Model
project_model :model do |m|
m.project_name = 'Robotlegs2'
m.language = 'as3'
m.background_color = '#FFFFFF'
m.width = 970
m.height = 550
# m.use_fdb = true
# m.use_fcsh = true
# m.preprocessor = 'cpp -D__DEBUG=false -P - - | tail -c +3'
# m.preprocessed_path = '.preprocessed'
# m.src_dir = 'src'
# m.lib_dir = 'lib'
# m.swc_dir = 'lib'
# m.bin_dir = 'bin'
# m.test_dir = 'test'
# m.doc_dir = 'doc'
# m.asset_dir = 'assets'
m.compiler_gem_name = 'sprout-flex4sdk-tool'
m.compiler_gem_version = '>= 4.0.0'
# m.source_path << "#{m.lib_dir}/somelib"
m.library_path << 'lib/hamcrest-as3-flex-1.1.3.swc'
m.library_path << 'lib/robotlegs-framework-v1.5.2.swc'
m.library_path << 'lib/SwiftSuspenders-v2.0.0b1.swc'
m.library_path << 'lib/as3commons-logging-2.7.swc'
m.library_path << 'lib/mockolate-0.12.2-flex.swc'
# m.libraries << :corelib
m.support_dir = 'support'
end
desc 'Compile and debug the application'
debug :debug
desc 'Compile run the test harness'
unit :test do |t|
t.input = 'test/RobotlegsTest.mxml'
t.debug = true
t.library_path << 'lib/flexunit-4.1.0-8-flex_4.1.0.16076.swc'
t.library_path << 'lib/flexunit-cilistener-4.1.0-8-4.1.0.16076.swc'
t.library_path << 'lib/fluint-extensions-4.1.0-8-4.1.0.16076.swc'
end
desc 'Compile the optimized deployment'
deploy :deploy
desc 'Create documentation'
document :doc
desc 'Compile a SWC file'
swc :swc
desc 'Compile and run the test harness for CI'
ci :cruise
# set up the default rake task
task :default => :test