Module: Dapp::Project::Command::Stages::Pull
- Included in:
- Dapp::Project
- Defined in:
- lib/dapp/project/command/stages/pull.rb
Overview
Pull
Instance Method Summary collapse
Instance Method Details
#pull_all_stages? ⇒ Boolean
19 20 21 |
# File 'lib/dapp/project/command/stages/pull.rb', line 19 def pull_all_stages? !![:pull_all_stages] end |
#stages_pull(repo) ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/dapp/project/command/stages/pull.rb', line 9 def stages_pull(repo) build_configs.each do |config| log_step_with_indent(config._name) do Application.new(config: config, project: self, ignore_git_fetch: true).tap do |app| app.import_stages!(repo, format: '%{repo}:dappstage-%{signature}') end end end end |