class Rake::Delphi::CustomExec
Public Instance Methods
execute()
click to toggle source
# File lib/rake/common/exectask.rb, line 10 def execute end
to_system_path(path, base = '')
click to toggle source
Calls superclass method
# File lib/rake/common/exectask.rb, line 13 def to_system_path(path, base = '') r = super(path, base) # quote path if it contains SPACE r = '"%s"' % r.strip if r[" "] end