Sha256: 1032747a0ff94fec142d69485b424e65724c39b0b7d8305d1c08fe6255e8fd34
Contents?: true
Size: 415 Bytes
Versions: 7
Compression:
Stored size: 415 Bytes
Contents
module OodAppkit # An object that describes a server hosted by a given cluster class Server # The host information for this server object # @example Host information for login node # "my_server.host" #=> "oakley.osc.edu" # @return [String] the host for this server attr_reader :host # @param host [String] host info def initialize(host:, **_) @host = host end end end
Version data entries
7 entries across 7 versions & 1 rubygems