Class: Bosh::Cli::ReleaseTarball::TarballArtifact
- Defined in:
- lib/cli/release_tarball.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize(info) ⇒ TarballArtifact
constructor
A new instance of TarballArtifact.
- #new_version? ⇒ Boolean
Constructor Details
#initialize(info) ⇒ TarballArtifact
Returns a new instance of TarballArtifact.
399 400 401 402 |
# File 'lib/cli/release_tarball.rb', line 399 def initialize(info) @name = info['name'] @version = info['version'] end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
404 405 406 |
# File 'lib/cli/release_tarball.rb', line 404 def name @name end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
404 405 406 |
# File 'lib/cli/release_tarball.rb', line 404 def version @version end |
Instance Method Details
#new_version? ⇒ Boolean
406 407 408 |
# File 'lib/cli/release_tarball.rb', line 406 def new_version? false end |