Class: SashimiTanpopo::Provider::Local
- Defined in:
- lib/sashimi_tanpopo/provider/local.rb,
sig/sashimi_tanpopo/provider/local.rbs
Overview
Apply recipe files to local
Instance Method Summary collapse
-
#initialize(recipe_paths:, target_dir:, params:, dry_run:, is_colored:) ⇒ Local
constructor
A new instance of Local.
- #perform
Methods inherited from Base
#apply_recipe_files, #cleanup_target_dir
Constructor Details
#initialize(recipe_paths:, target_dir:, params:, dry_run:, is_colored:) ⇒ Local
Returns a new instance of Local.
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/sashimi_tanpopo/provider/local.rb', line 12 def initialize(recipe_paths:, target_dir:, params:, dry_run:, is_colored:) super( recipe_paths: recipe_paths, target_dir: target_dir, params: params, dry_run: dry_run, is_colored: is_colored, is_update_local: true ) end |
Instance Method Details
#perform
This method returns an undefined value.
23 24 25 |
# File 'lib/sashimi_tanpopo/provider/local.rb', line 23 def perform apply_recipe_files end |