Class: JDC::App::Push
- Defined in:
- lib/jdc/cli/app/push.rb
Instance Attribute Summary
Attributes included from Create
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
Methods inherited from CLI
#add_exception_name_to_msg, #build_client, #check_key, #check_logged_in, #check_organization_and_space, #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, #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
#push ⇒ Object
40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/jdc/cli/app/push.rb', line 40 def push name = input[:name] path = File.(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
61 62 63 64 65 66 67 68 69 |
# File 'lib/jdc/cli/app/push.rb', line 61 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 |
#sync_app(app, path) ⇒ Object
52 53 54 55 56 57 58 59 |
# File 'lib/jdc/cli/app/push.rb', line 52 def sync_app(app, path) upload_app(app, path) apply_changes(app) display_changes(app) commit_changes(app) warn "\n#{c(app.name, :name)} is currently stopped, start it with 'jdc start'" unless app.started? end |