Method: PDK::Config::Namespace#name
- Defined in:
- lib/pdk/config/namespace.rb
#name ⇒ String
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>”.
198 199 200 |
# File 'lib/pdk/config/namespace.rb', line 198 def name child_namespace? ? [parent.name, @name].join('.') : @name end |