Sha256: 970d17b76a9479d6a1edef9676f2f8559959b5763494a5985ca972a950bf0746
Contents?: true
Size: 685 Bytes
Versions: 20
Compression:
Stored size: 685 Bytes
Contents
module Ufo class Network < Command autoload :Init, "ufo/network/init" autoload :Helper, "ufo/network/helper" autoload :Fetch, "ufo/network/fetch" def self.cli_options [ [:force, type: :boolean, desc: "Bypass overwrite are you sure prompt for existing files."], [:subnets, type: :array, desc: "Subnets"], [:vpc_id, desc: "Vpc id"], [:filename, default: "default", desc: "Name of the settings file to create w/o extension."], ] end cli_options.each { |o| option(*o) } desc "init", "Creates network starter settings file." long_desc Help.text("network:init") def init Init.start end end end
Version data entries
20 entries across 20 versions & 1 rubygems