class Lono::Sets
Public Instance Methods
delete(stack)
click to toggle source
# File lib/lono/sets.rb, line 23 def delete(stack) Delete.new(options.merge(stack: stack)).run end
deploy(stack)
click to toggle source
# File lib/lono/sets.rb, line 8 def deploy(stack) Deploy.new(options.merge(stack: stack)).run end
list()
click to toggle source
# File lib/lono/sets.rb, line 30 def list List.new(options).run end
status(stack)
click to toggle source
# File lib/lono/sets.rb, line 14 def status(stack) status = Status.new(@options.merge(stack: stack, delay_for_threads: false)) success = status.show exit 3 unless success end