Class: Skylight::Util::Deploy::GitDeploy Private
- Inherits:
-
EmptyDeploy
- Object
- EmptyDeploy
- Skylight::Util::Deploy::GitDeploy
- Defined in:
- lib/skylight/util/deploy.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #description ⇒ Object readonly private
- #git_sha ⇒ Object readonly private
Attributes inherited from EmptyDeploy
Instance Method Summary collapse
-
#initialize ⇒ GitDeploy
constructor
private
A new instance of GitDeploy.
Methods inherited from EmptyDeploy
Constructor Details
#initialize ⇒ GitDeploy
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.
Returns a new instance of GitDeploy.
99 100 101 102 |
# File 'lib/skylight/util/deploy.rb', line 99 def initialize(*) super @git_sha, @description = get_info end |
Instance Attribute Details
#description ⇒ Object (readonly)
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.
97 98 99 |
# File 'lib/skylight/util/deploy.rb', line 97 def description @description end |
#git_sha ⇒ Object (readonly)
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.
97 98 99 |
# File 'lib/skylight/util/deploy.rb', line 97 def git_sha @git_sha end |