class Danger::DryRun

Public Class Methods

new(argv) click to toggle source
Calls superclass method
# File lib/danger/commands/dry_run.rb, line 15
def initialize(argv)
  show_help = true if argv.arguments == ["-h"]

  # Currently CLAide doesn't support short option like -h https://github.com/CocoaPods/CLAide/pull/60
  # when user pass in -h, mimic the behavior of passing in --help.
  argv = CLAide::ARGV.new ["--help"] if show_help

  super

  if argv.flag?("pry", false)
    @dangerfile_path = PrySetup.new(cork).setup_pry(@dangerfile_path, DryRun.command)
  end
end
options() click to toggle source
# File lib/danger/commands/dry_run.rb, line 9
def self.options
  [
    ["--pry", "Drop into a Pry shell after evaluating the Dangerfile."]
  ]
end

Public Instance Methods

run() click to toggle source
# File lib/danger/commands/dry_run.rb, line 36
def run
  ENV["DANGER_USE_LOCAL_ONLY_GIT"] = "YES"
  ENV["DANGER_LOCAL_HEAD"] = @head if @head
  ENV["DANGER_LOCAL_BASE"] = @base if @base

  env = EnvironmentManager.new(ENV, cork)
  dm = Dangerfile.new(env, cork)

  exit 1 if dm.run(
    Danger::EnvironmentManager.danger_base_branch,
    Danger::EnvironmentManager.danger_head_branch,
    @dangerfile_path,
    nil,
    nil,
    nil
  )
end
validate!() click to toggle source
Calls superclass method
# File lib/danger/commands/dry_run.rb, line 29
def validate!
  super
  unless @dangerfile_path
    help! "Could not find a Dangerfile."
  end
end