class SmartCore::Container::Entities::NamespaceBuilder

@api private @since 0.7.0

Attributes

namespace_name[R]

@return [String]

@api private @since 0.7.0

Public Class Methods

build(namespace_name) click to toggle source

@param namespace_name [String] @return [SmartCore::Container::Entities::Namespace]

@api private @since 0.7.0

# File lib/smart_core/container/entities/namespace_builder.rb, line 12
def build(namespace_name)
  new(namespace_name).build
end
new(namespace_name) click to toggle source

@param namespace_name [String] @return [void]

@api private @since 0.7.0

# File lib/smart_core/container/entities/namespace_builder.rb, line 22
def initialize(namespace_name)
  @namespace_name = namespace_name
end

Public Instance Methods

build() click to toggle source

@return [SmartCore::Container::Entities::Namespace]

@api private @since 0.7.0

# File lib/smart_core/container/entities/namespace_builder.rb, line 30
def build
  SmartCore::Container::Entities::Namespace.new(namespace_name)
end