gitlab/Rakefile
Rémy Coutable b18049b057
Make the 'test' task a no-op and advertise other tasks instead
Signed-off-by: Rémy Coutable <remy@rymai.me>
2021-04-19 11:35:02 +02:00

17 lines
539 B
Ruby
Executable file

#!/usr/bin/env rake
# frozen_string_literal: true
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
Rake::TaskManager.record_task_metadata = true
require File.expand_path('config/application', __dir__)
relative_url_conf = File.expand_path('config/initializers/relative_url', __dir__)
require relative_url_conf if File.exist?("#{relative_url_conf}.rb")
Gitlab::Application.load_tasks
Knapsack.load_tasks if defined?(Knapsack)