Class: Rake::Delphi::CustomExec

Inherits:
BasicTask show all
Defined in:
lib/rake/common/exectask.rb

Direct Known Subclasses

CustomDelphiTool

Instance Method Summary collapse

Methods inherited from BasicTask

#initialize, #trace?

Constructor Details

This class inherits a constructor from Rake::Delphi::BasicTask

Instance Method Details

#executeObject



10
11
# File 'lib/rake/common/exectask.rb', line 10

def execute
end

#to_system_path(path, base = '') ⇒ Object



13
14
15
16
17
# 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