module Dapp::Dimg::Dapp::Command::Stages::FlushRepo

Public Instance Methods

ruby2go_cleanup_stages_flush_repo_options_dump() click to toggle source
# File lib/dapp/dimg/dapp/command/stages/flush_repo.rb, line 11
def ruby2go_cleanup_stages_flush_repo_options_dump
  ruby2go_cleanup_common_repo_options.merge(
    mode: {
      with_dimgs: false,
      with_stages: true,
      only_repo: true,
    },
  ).tap do |json|
    break JSON.dump(json)
  end
end
stages_flush_repo() click to toggle source
# File lib/dapp/dimg/dapp/command/stages/flush_repo.rb, line 7
def stages_flush_repo
  ruby2go_cleanup_command(:flush, ruby2go_cleanup_stages_flush_repo_options_dump)
end