class Pec::Command::List

Public Class Methods

before_do() click to toggle source
# File lib/pec/command/list.rb, line 10
def self.before_do
  Thor.new.say("vm list:", :yellow)
end
not_fetch() click to toggle source
# File lib/pec/command/list.rb, line 14
def self.not_fetch
  true
end
task(server, config) click to toggle source
# File lib/pec/command/list.rb, line 3
def self.task(server, config)
  puts sprintf(
    " %-35s",
    config.name
  )
end