Sha256: 1db61c8932f1dd4603a397797aff67eba19d5c2bb82e4f68d6af83552f7e176e
Contents?: true
Size: 1.21 KB
Versions: 2
Compression:
Stored size: 1.21 KB
Contents
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 = '<%= project_name %>' m.language = 'mxml' m.background_color = '#FFFFFF' m.width = 970 m.height = 550 m.compiler_gem_name = 'sprout-flex4sdk-tool' m.compiler_gem_version = '>= 4.0.0' # 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.source_path << "#{m.lib_dir}/somelib" # m.libraries << :corelib end desc 'Compile and debug the application' debug :debug desc 'Compile run the test harness' unit :test 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 => :debug
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sprout-flex4-bundle-0.1.4 | lib/sprout/generators/project/templates/rakefile.rb |
sprout-flex4-bundle-0.1.3 | lib/sprout/generators/project/templates/rakefile.rb |