class RubyYacht::ServerType::DSL

This class provides a DSL for configuring a RubyYacht::ServerType.

Public Class Methods

new(name) click to toggle source

This initiailzer creates the server type DSL.

### Parameters

  • **name: Symbol** The name of the server type.

# File lib/ruby_yacht/dsl/server_type.rb, line 63
def initialize(name)
  @name = name
  load_custom_attributes
end