-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrake-targets.xml
45 lines (35 loc) · 1.26 KB
/
rake-targets.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
<?xml version="1.0" encoding="UTF-8"?>
<project name="rake-targets" default="">
<!--
<condition property="exec.shell" value="artd-shell.bat">
<os family="windows"/>
</condition>
<condition property="exec.shell" value="/bin/bash">
<os family="unix"/>
</condition>
<exec executable="${exec.shell}" outputproperty="rake.ant.xml">
<arg value="-c"/>
<arg value="artd-rakish-find call-rake.xml"/>
</exec>
-->
<!--
<exec executable="artd-rakish-find" outputproperty="rake.ant.xml">
<arg value="call-rake.xml"/>
</exec>
<import file="${rake.ant.xml}" />
-->
<import file="./bin/artd-rakish-bin/call-rake.xml" />
<property environment="env" />
<target name="cleanAll" description="delete output directory">
<call-rake target="cleanAll" />
</target>
<target name="installGem" description="install rakish rubygem">
<call-rake target="installGem"/>
</target>
<target name="subdirTest" description="test required subprojects">
<call-rake file="./test/subdir-test/rakefile.rb" target="subdir-test:test"/>
</target>
<target name="echoProperties" description="dump properties to console">
<echoproperties/>
</target>
</project>