Class: VMC::Service::Binding

Inherits:
Base
  • Object
show all
Defined in:
lib/vmc/cli/service/unbind.rb,
lib/vmc/cli/service/binding.rb

Instance Method Summary collapse

Methods inherited from CLI

#check_logged_in, #check_target, #client, client, client=, #client_target, #color_enabled?, #default_action, #ensure_config_dir, #err, #execute, #fail, #force?, #invalidate_client, #log_error, #name_list, #no_v2, #one_of, #precondition, #quiet?, #remove_target_info, #sane_target_url, #save_target_info, #save_targets, #set_target, #table, #target_file, #target_info, #targets_info, #tokens_file, #user_colors, #v2?, #verbose?

Methods included from VMC::Spacing

#indented, #justify, #line, #lines, #quiet?, #spaced, #start_line, #tabular, #text_width, #trim_escapes

Methods included from Interactive

#ask, #handler, #input_state, #list_choices, #prompt, #show_default

Instance Method Details

#bind_serviceObject



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/vmc/cli/service/binding.rb', line 25

def bind_service
  app = input[:app]
  instance = input[:instance, app]

  with_progress(
      "Binding #{c(instance.name, :name)} to #{c(app.name, :name)}") do |s|
    if app.binds?(instance)
      s.skip do
        err "App #{b(app.name)} already binds #{b(instance.name)}."
      end
    else
      app.bind(instance)
    end
  end
end

#unbind_serviceObject



13
14
15
16
17
18
19
20
21
# File 'lib/vmc/cli/service/unbind.rb', line 13

def unbind_service
  app = input[:app]
  service = input[:service, app]

  with_progress(
      "Unbinding #{c(service.name, :name)} from #{c(app.name, :name)}") do
    app.unbind(service)
  end
end