Sha256: d9f9fa4dcd52b90dab8bdd7b06bb91861f2c8069f5617c4876460e888519c939

Contents?: true

Size: 792 Bytes

Versions: 9

Compression:

Stored size: 792 Bytes

Contents

#!/usr/bin/ruby

#######################################################################
=begin
 runant.rb

    This script is a translation of the runant.pl written by Steve Loughran.
    It runs ant with/out arguments
    This script has been tested with ruby1.8.2-14/WinXP

 created:         2005-03-08
 author:          Shane Duan
=end 

# Debugging flag
$debug = true

# Assumptions:
#
# - the "java" executable/script is on the command path
# - ANT_HOME has been set
# - target platform uses ":" as classpath separator or a "C:" exists (windows)
# - target platform uses "/" as directory separator.

#######################################################################
require 'Ant'

if not AntDriver.new().launch(ARGV)
  raise 'AntDriver failed'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
BuildMaster-0.7.0 lib/buildmaster/run_ant.rb
BuildMaster-0.8.0 lib/buildmaster/run_ant.rb
BuildMaster-0.8.1 lib/buildmaster/run_ant.rb
BuildMaster-0.9.0 lib/buildmaster/run_ant.rb
BuildMaster-1.0.6 lib/buildmaster/project/run_ant.rb
BuildMaster-1.0.9 lib/buildmaster/project/run_ant.rb
BuildMaster-1.1.12 lib/buildmaster/project/run_ant.rb
BuildMaster-1.1.9 lib/buildmaster/project/run_ant.rb
BuildMaster-0.9.1 lib/buildmaster/run_ant.rb