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.



286
287
288
289
# File 'lib/cli/release_tarball.rb', line 286

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

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



291
292
293
# File 'lib/cli/release_tarball.rb', line 291

def name
  @name
end

#versionObject (readonly)

Returns the value of attribute version.



291
292
293
# File 'lib/cli/release_tarball.rb', line 291

def version
  @version
end

Instance Method Details

#new_version?Boolean

Returns:

  • (Boolean)


293
294
295
# File 'lib/cli/release_tarball.rb', line 293

def new_version?
  false
end