Class: Serverkit::Actions::Base
- Inherits:
-
Object
- Object
- Serverkit::Actions::Base
- Defined in:
- lib/serverkit/actions/base.rb
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(hosts: nil, recipe_path: nil, ssh_options: nil, variables_path: nil) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(hosts: nil, recipe_path: nil, ssh_options: nil, variables_path: nil) ⇒ Base
Returns a new instance of Base.
16 17 18 19 20 21 |
# File 'lib/serverkit/actions/base.rb', line 16 def initialize(hosts: nil, recipe_path: nil, ssh_options: nil, variables_path: nil) @hosts = hosts @recipe_path = recipe_path @ssh_options = @variables_path = variables_path end |
Instance Method Details
#call ⇒ Object
23 24 25 26 |
# File 'lib/serverkit/actions/base.rb', line 23 def call setup run end |