Sha256: 19df0d3427eab560d82bd77579460fcfa62a83e68f8e85620c5d5dd7f83e8634

Contents?: true

Size: 1.5 KB

Versions: 31

Compression:

Stored size: 1.5 KB

Contents

= ActionScript 3.0 Bundle

The ActionScript 3 Bundle provides support for ActionScript 3.0 project and class generators as well as Rake build tasks.

You can install this bundle and run it's project generator as follows:

  sprout -n as3 SomeProject

Once you have generated a new project, using a terminal, you can change to the newly created directory
and use script/generate to create a variety of other features.

To generate a new ActionScript class, test case and test suite, simply run the following from the
same directory as your rakefile.

  script/generate class [fully-qualified-class-name]

For example:

  script/generate class utils.MathUtil

While you can change where classes are created by modifying your ProjectModel, 
if the default values are used, the following statements should be correct:

The class will be created in:
  src/utils/MathUtil.as
The test case will will be created in:
  test/utils/MathUtilTest.as
The test suite will be created or updated at:
  test/AllTests.as

If the class name passed into this generator ends with 'Test', only a test case
and test suite will be generated in the test package and no class will be generated.

You can also only create the test case and test suite by calling it's generator directly as follows:

  script/generate test utils.MathUtilTest

You can update only your test suite by simply initiating the suite generator as follows:

  script/generate suite

= Available Rake Tasks

* Sprout::AsDocTask
* Sprout::AsUnitTask
* Sprout::COMPCTask
* Sprout::MXMLCTask

Version data entries

31 entries across 31 versions & 2 rubygems

Version Path
sprout-as3-bundle-1.0.37 README
sprout-as3-bundle-1.0.36 README
sprout-as3-bundle-1.0.32 README
sprout-as3-bundle-1.0.31 README
sprout-as3-bundle-1.0.29 README
sprout-as3-bundle-1.0.30 README
sprout-as3-bundle-0.1.39 README
sprout-as3-bundle-0.1.37 README
sprout-as3-bundle-0.1.38 README
sprout-as3-bundle-0.1.27 README
sprout-as3-bundle-0.1.34 README
sprout-as3-bundle-0.1.32 README
sprout-as3-bundle-0.2.2 README
sprout-as3-bundle-0.2.3 README
sprout-as3-bundle-0.2.9 README
sprout-as3-bundle-1.0.11 README
sprout-as3-bundle-0.1.45 README
sprout-as3-bundle-1.0.14 README
sprout-as3-bundle-1.0.12 README
sprout-as3-bundle-0.1.40 README