Sha256: d217f0ba36c8759d1fba9636c70eb53f8aafe31d8c566d28e95327daf76e832f
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
# -*- encoding: UTF-8 -*- require 'tmpdir' module CSD # This namespace holds all individual application Modules # module Application # This is the root class of all Applications # class Base # Running recommended actions for all Applications on initialization. # Simple applications might not have to call this via +super+. # def initialize define_working_directory end # This method chooses the working directory, which will contain downloads needed for various tasks, etc. # Note that this directory is *not* removed by the AI in any case. The user has to make sure she knows the # location of it (especially if it is a temporary directory which is physically created right here). # def define_working_directory if Options.work_dir # The user specified the working directory manually path = Options.work_dir elsif Options.temp # The user specified the working directory to be a system's temporary directory # Note that only with this option, the directory is actually created at this point path = Dir.mktmpdir else # Other than that, we create a subdirectory in the current directory and use that app_name = Applications.current ? Applications.current.name : 'application' path = File.join(Dir.pwd, "#{app_name}.ai") end Path.work = path.pathnamify.expand_path end def create_working_directory unless Path.work.directory? UI.info "Creating working directory".green.bold Cmd.mkdir Path.work end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
csd-0.1.10 | lib/csd/application/default/base.rb |