f0391c2517
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
25 lines
625 B
Ruby
25 lines
625 B
Ruby
# frozen_string_literal: true
|
|
|
|
module RakeHelpers
|
|
def run_rake_task(task_name, *args)
|
|
Rake::Task[task_name].reenable
|
|
Rake.application.invoke_task("#{task_name}[#{args.join(',')}]")
|
|
end
|
|
|
|
def stub_warn_user_is_not_gitlab
|
|
allow(main_object).to receive(:warn_user_is_not_gitlab)
|
|
end
|
|
|
|
def silence_output
|
|
allow(main_object).to receive(:puts)
|
|
allow(main_object).to receive(:print)
|
|
end
|
|
|
|
def silence_progress_bar
|
|
allow_any_instance_of(ProgressBar::Output).to receive(:stream).and_return(double.as_null_object)
|
|
end
|
|
|
|
def main_object
|
|
@main_object ||= TOPLEVEL_BINDING.eval('self')
|
|
end
|
|
end
|