Sha256: a7a243471c4a06f52e0f4b334df50d3fb1d62b59ac550c7fb135e86dc490cad1
Contents?: true
Size: 588 Bytes
Versions: 8
Compression:
Stored size: 588 Bytes
Contents
module Aptible module CLI module Subcommands module Rebuild def self.included(thor) thor.class_eval do include Helpers::Operation include Helpers::App desc 'rebuild', 'Rebuild an app, and restart its services' app_options def rebuild app = ensure_app(options) operation = app.create_operation(type: 'rebuild') puts 'Rebuilding app...' attach_to_operation_logs(operation) end end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems