-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
56 lines (35 loc) · 1.33 KB
/
README.txt
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
########################################
This project was generated using Sprouts
http://code.google.com/p/projectsprouts/
Please report any bugs to:
http://code.google.com/p/projectsprouts/issues/list
Please feel free to ask questions at:
http://groups.google.com/group/projectsprouts
########################################
Using your favorite terminal, cd to this directory have fun!
########################################
To create a new ActionScript class, TestCase and rebuild all project TestSuites:
script/generate class -s utils.MathUtil
########################################
To create a new Interface begin the name with I + Capital letter (eg: ISomeName)
or end the name with 'able'
Name begins with Capital 'I' followed by another capital letter
script/generate class utils.ISomeName
or
Name ends with 'able'
script/generate class utils.Observable
or
Explicitly identify interface creation
script/generate interface utils.SomeInterface
########################################
To create a new TestCase only, enter the following:
script/generate test utils.SomeTest
########################################
To compile and launch your application:
rake
########################################
To compile and launch your test suites:
rake test
########################################
To see all available rake tasks:
rake -T