Method: Beaker::DSL::InstallUtils::EZBakeUtils#ezbake_install_name

Defined in:
lib/beaker/dsl/install_utils/ezbake_utils.rb

#ezbake_install_nameString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Retrieve the tarball installation name. This is the name of the tarball without the .tar.gz extension, and the name of the path where it will unpack to.

Returns:

  • (String)

    name of the tarball and directory



206
207
208
209
210
211
# File 'lib/beaker/dsl/install_utils/ezbake_utils.rb', line 206

def ezbake_install_name
  ezbake = ezbake_config
  project_package_version = ezbake[:package_version]
  project_name = ezbake[:project]
  "%s-%s" % [ project_name, project_package_version ]
end