Method: Buildr::ArtifactNamespace.root

Defined in:
lib/buildr/packaging/artifact_namespace.rb

.root {|ROOT| ... } ⇒ Object

:call-seq:

ArtifactNamespace.root { |ns| ... } -> ns

Obtain the root namespace, returns the ROOT constant

Yields:

  • (ROOT)


317
318
319
320
# File 'lib/buildr/packaging/artifact_namespace.rb', line 317

def root
  yield ROOT if block_given?
  ROOT
end