Class: CF::App::Push

Inherits:
Base
  • Object
show all
Includes:
Create, Sync
Defined in:
lib/cf/cli/app/push.rb

Instance Attribute Summary

Attributes included from Create

#input, #path

Instance Method Summary collapse

Methods included from Create

#bind_services, #create_app, #create_services, #get_inputs, #map_route, #start_app

Methods included from Sync

#apply_changes, #commit_changes, #display_changes

Methods inherited from Base

#app_status, #human_mb, #human_size, #megabytes, #memory_choices, #state_color

Methods included from LoginRequirements

#precondition

Methods inherited from CLI

#add_exception_name_to_msg, #build_client, #check_logged_in, #check_target, client, #client, client=, #client_target, #color_enabled?, #debug?, #default_action, #ensure_config_dir, #err, #execute, #fail, #fail_unknown, #force?, #formatted_exception_output, #help, #help_header, #invalidate_client, #log_error, #log_error_and_dump_crashlog, #name_list, #normalize_targets_info, #one_of, #quiet?, #remove_target_info, #sane_target_url, #save_target_info, #save_targets, #save_token_if_it_changes, #set_target, #table, #target_info, #targets_info, #user_colors, #verbose?, #wrap_errors

Methods included from 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

#pushObject



40
41
42
43
44
45
46
47
48
49
50
# File 'lib/cf/cli/app/push.rb', line 40

def push
  name = input[:name]
  path = File.expand_path(input[:path])
  app = client.app_by_name(name)

  if app
    sync_app(app, path)
  else
    setup_new_app(path)
  end
end

#setup_new_app(path) ⇒ Object



52
53
54
55
56
57
58
59
60
# File 'lib/cf/cli/app/push.rb', line 52

def setup_new_app(path)
  self.path = path
  app = create_app(get_inputs)
  map_route(app)
  create_services(app)
  bind_services(app)
  upload_app(app, path)
  start_app(app)
end