Class: VMC::App::Push

Inherits:
Base
  • Object
show all
Includes:
Create, Sync
Defined in:
lib/vmc/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, #determine_framework, #determine_runtime, #get_inputs, #map_url, #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 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 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



74
75
76
77
78
79
80
81
82
83
84
# File 'lib/vmc/cli/app/push.rb', line 74

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



93
94
95
96
97
98
99
100
101
102
# File 'lib/vmc/cli/app/push.rb', line 93

def setup_new_app(path)
  self.path = path
  app = create_app(get_inputs)
  map_url(app)
  create_services(app)
  bind_services(app)
  app = filter(:push_app, app)
  upload_app(app, path)
  start_app(app)
end

#sync_app(app, path) ⇒ Object



86
87
88
89
90
91
# File 'lib/vmc/cli/app/push.rb', line 86

def sync_app(app, path)
  upload_app(app, path)
  apply_changes(app)
  display_changes(app)
  commit_changes(app)
end