Sha256: e482e2b6978a68cf3c4571b2f8f97b9f122fdf06fa719c605931c95f8db72e3d
Contents?: true
Size: 347 Bytes
Versions: 14
Compression:
Stored size: 347 Bytes
Contents
# encoding: UTF-8 module Tetra # encapsulates tetra-specific Ant commandline options class Ant # returns a command line for running Ant def self.commandline(project_path, ant_path) if ant_path File.join(project_path, ant_path, "ant") else "ant" # use system-provided executable end end end end
Version data entries
14 entries across 14 versions & 1 rubygems