Sha256: 892af6a6aa23d8a3de713feadac31ed88c41f527c0b9e41452fa96e238826142
Contents?: true
Size: 415 Bytes
Versions: 12
Compression:
Stored size: 415 Bytes
Contents
# -*- encoding: UTF-8 -*- opts.headline 'WORKING DIRECTORY OPTIONS'.green.bold self.temp = true opts.on("--no-temp", "Use a subdirectory in the current directory as working directory and not /tmp.") do |value| self.temp = value end self.work_dir = nil opts.on("--work-dir [PATH]", "Defines and/or creates the working directory. This will override the --no-temp option.") do |value| self.work_dir = value end
Version data entries
12 entries across 11 versions & 1 rubygems