Method: PDK::Config::Namespace#name

Defined in:
lib/pdk/config/namespace.rb

#nameString

Determines the fully qualified name of the namespace.

If this is a child namespace, then fully qualified name for the namespace will be “<parent>.<child>”.

Returns:

  • (String)

    the fully qualifed name of the namespace.



198
199
200
# File 'lib/pdk/config/namespace.rb', line 198

def name
  child_namespace? ? [parent.name, @name].join('.') : @name
end