class WineTopasEngine

Private Instance Methods

command(infile) click to toggle source
# File lib/topas-tools/TopasEngine.rb, line 52
def command infile
  path = `winepath -w #{infile}`.gsub('\\', '\\\\\\').gsub("\n", "")
  "wine tc.exe #{path}"
end