-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.xml
74 lines (65 loc) · 2.21 KB
/
package.xml
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
65
66
67
68
69
70
71
72
73
74
<package>
<name>Shampoo</name>
<prereq>TCP</prereq>
<prereq>XML</prereq>
<prereq>XML-PullParser</prereq>
<prereq>Digest</prereq>
<namespace>Shampoo</namespace>
<start>
%1 isNil ifTrue:
[^Shampoo.ShampooServer startOn: 9090 login: 'user' pass: '1234'].
%1 =~ '^([A-z0-9]+)\:([A-z0-9]+):([0-9]+)' ifMatched:
[:m | ^Shampoo.ShampooServer
startOn: (m at: 3) asNumber login: (m at: 1) pass: (m at: 2)].
</start>
<stop>
%1 isNil ifTrue:
[^Shampoo.ShampooServer closeAll].
%1 ~ '^([0-9]+)' ifTrue:
[^Shampoo.ShampooServer closeOn: %1 asNumber]
</stop>
<filein>xml.st</filein>
<filein>hacks.st</filein>
<filein>auth.st</filein>
<filein>requests.st</filein>
<filein>responses.st</filein>
<filein>server.st</filein>
<filein>parser.st</filein>
<filein>pretty.st</filein>
<file>xml.st</file>
<file>hacks.st</file>
<file>auth.st</file>
<file>requests.st</file>
<file>responses.st</file>
<file>server.st</file>
<file>parser.st</file>
<file>pretty.st</file>
<test>
<sunit>Shampoo.LoginTest</sunit>
<sunit>Shampoo.NamespacesTest</sunit>
<sunit>Shampoo.ClassesTest</sunit>
<sunit>Shampoo.ClassTest</sunit>
<sunit>Shampoo.CatsTest</sunit>
<sunit>Shampoo.MethodsTest</sunit>
<sunit>Shampoo.MethodTest</sunit>
<sunit>Shampoo.CompileClassTest</sunit>
<sunit>Shampoo.CompileClassSideTest</sunit>
<sunit>Shampoo.CompileMethodTest</sunit>
<sunit>Shampoo.DoItTest</sunit>
<sunit>Shampoo.PrintItTest</sunit>
<sunit>Shampoo.OperationalResponseTest</sunit>
<sunit>Shampoo.MessageParserTest</sunit>
<sunit>Shampoo.ShampooNotAuthStateTest</sunit>
<sunit>Shampoo.ShampooConnectionTest</sunit>
<sunit>Shampoo.ShampooRemoveClassTest</sunit>
<sunit>Shampoo.ShampooRemoveMethodTest</sunit>
<sunit>Shampoo.ShampooChangeCategoryTest</sunit>
<sunit>Shampoo.ShampooRemoveCategoryTest</sunit>
<sunit>Shampoo.RenameCategoryTest</sunit>
<sunit>Shampoo.MethodSourcePrettifierTest</sunit>
<sunit>Shampoo.ShampooFileOutClassTest</sunit>
<sunit>Shampoo.ShampooFileOutClassCategoryTest</sunit>
<sunit>Shampoo.ShampooFileOutNamespaceTest</sunit>
<filein>tests.st</filein>
</test>
</package>