Class: Bosh::Cli::Command::Release::InitRelease
- Defined in:
- lib/cli/commands/release/init_release.rb
Constant Summary
Constants inherited from Base
Instance Attribute Summary
Attributes inherited from Base
#args, #exit_code, #info, #options, #out, #runner, #work_dir
Instance Method Summary collapse
Methods inherited from Base
#add_option, #blob_manager, #blobstore, #cache_dir, #config, #confirmed?, #credentials, #deployment, #director, #initialize, #interactive?, #logged_in?, #non_interactive?, #progress_renderer, #redirect, #release, #remove_option, #run_nested_command, #show_current_state, #target, #target_name, #verbose?
Methods included from Bosh::Cli::CommandDiscovery
#desc, #method_added, #option, #register_command, #usage
Methods included from DeploymentHelper
#build_manifest, #cancel_deployment, #deployment_changed?, #inspect_deployment_changes, #job_exists_in_deployment?, #job_unique_in_deployment?, #jobs_and_indexes, #prepare_deployment_manifest, #prompt_for_errand_name, #prompt_for_job_and_index
Constructor Details
This class inherits a constructor from Bosh::Cli::Command::Base
Instance Method Details
#init(base = nil) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/cli/commands/release/init_release.rb', line 9 def init(base = nil) if base FileUtils.mkdir_p(base) Dir.chdir(base) end err('Release already initialized') if in_release_dir? git_init if [:git] %w[config jobs packages src blobs].each do |dir| FileUtils.mkdir(dir) end # Initialize an empty blobs index File.open(File.join('config', 'blobs.yml'), 'w') do |f| Psych.dump({}, f) end say('Release directory initialized'.make_green) end |