Class: Releasy::Deployers::Deployer Abstract
- Inherits:
-
Object
- Object
- Releasy::Deployers::Deployer
- Includes:
- Rake::DSL, Mixins::Log
- Defined in:
- lib/releasy/deployers/deployer.rb
Overview
This class is abstract.
Constant Summary collapse
- WORKING_CHARACTER =
Printed out while file is being transferred.
"."
Constants included from Mixins::Log
Mixins::Log::DEFAULT_LOG_LEVEL, Mixins::Log::LOG_LEVELS
Instance Attribute Summary collapse
-
#project ⇒ Object
readonly
Returns the value of attribute project.
Instance Method Summary collapse
-
#initialize(project) ⇒ Deployer
constructor
A new instance of Deployer.
- #type ⇒ Object
Methods included from Mixins::Log
Constructor Details
#initialize(project) ⇒ Deployer
Returns a new instance of Deployer.
18 19 20 21 |
# File 'lib/releasy/deployers/deployer.rb', line 18 def initialize(project) @project = project setup end |
Instance Attribute Details
#project ⇒ Object (readonly)
Returns the value of attribute project.
14 15 16 |
# File 'lib/releasy/deployers/deployer.rb', line 14 def project @project end |
Instance Method Details
#type ⇒ Object
16 |
# File 'lib/releasy/deployers/deployer.rb', line 16 def type; self.class::TYPE; end |