Class: Bosh::Cli::ReleaseTarball::TarballArtifact

Inherits:
Object
  • Object
show all
Defined in:
lib/cli/release_tarball.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(info) ⇒ TarballArtifact

Returns a new instance of TarballArtifact.



397
398
399
400
# File 'lib/cli/release_tarball.rb', line 397

def initialize(info)
  @name = info['name']
  @version = info['version']
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



402
403
404
# File 'lib/cli/release_tarball.rb', line 402

def name
  @name
end

#versionObject (readonly)

Returns the value of attribute version.



402
403
404
# File 'lib/cli/release_tarball.rb', line 402

def version
  @version
end

Instance Method Details

#new_version?Boolean

Returns:

  • (Boolean)


404
405
406
# File 'lib/cli/release_tarball.rb', line 404

def new_version?
  false
end