class SimplyGenius::Atmos::Commands::Destroy

Public Class Methods

description() click to toggle source
# File lib/simplygenius/atmos/commands/destroy.rb, line 9
def self.description
  "Runs terraform destroy"
end

Public Instance Methods

execute() click to toggle source
Calls superclass method
# File lib/simplygenius/atmos/commands/destroy.rb, line 13
def execute
  @terraform_arguments.insert(0, "destroy")
  super
end