class PhilColumns::Command::Mulligan

Public Instance Methods

execute() click to toggle source
# File lib/phil_columns/command/mulligan.rb, line 7
def execute
  load_environment

  say( "- DRY RUN -", :yellow ) if dry_run?

  unless dry_run?
    migrator.mulligan
    archivist.clear_seeds
  end

  seeder.execute
end