Sha256: 592a28ac826a206505ab7991e867bd639e33006aa0fda4072d2d455eaf840599
Contents?: true
Size: 410 Bytes
Versions: 9
Compression:
Stored size: 410 Bytes
Contents
module Switchboard module Commands class Disco < Switchboard::Command description "Service discovery" def self.options(opts) super(opts) opts.on("--node=node", String, "Specifies the node to query.") { |v| OPTIONS["disco.node"] = v } opts.on("--target=target", String, "Specifies the target to query.") { |v| OPTIONS["disco.target"] = v } end end end end
Version data entries
9 entries across 9 versions & 3 rubygems