0.7.2 / 2011-07-06

0.7.1 / 2010-07-20

0.7.0 / 2008-02-16

0.6.0 / 2007-06-18

to the block and pass itself as a parameter. While slightly more verbose, this is idiomatic Ruby and allows you to use objects and invoke methods that are not in the scope of the task.

The Old Way:

@ant.path(:id => "other.class.path"){

pathelement(:location => "classes")              
pathelement(:location => "config")

}

The New Way:

def find_location

return "classes"

end

@ant.path(:id => "other.class.path"){ |ant|

ant.pathelement(:location => find_location())
ant.pathelement(:location => "config")

}

0.5.4 / 2007-06-13

the contents together without an appropriate separator. For example; ["file1.txt", "file2.txt"].to_s --> "file1.txtfile2.txt" Instead, users are encouraged to do something like; ["file1.txt", "file2.txt"].join(File::PATH_SEPARATOR).to_s --> "file1.txt:file2.txt"

0.5.3 / 2007-06-13

'true' constant rather than the String 'true';

@ant.javac(:srcdir => @resource_dir + '/src',

:destdir => @output_dir + '/classes',
:debug => true,
:verbose => true)

0.5.2 / 2007-04-17

example: @ant = AntProject.new(:ant_home=>"/Users/fooman/tools/apache-ant-1.7.0")

0.5.0 / 2007-03-16

0.4.0 / 2007-03-04

0.3.0 / 2007-02-19

0.2.0 / 2007-01-30

0.1.0 / 2007-01-20

[Validate]

Generated with the Darkfish Rdoc Generator 2.