gitlab/Rakefile

17 lines
539 B
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
#!/usr/bin/env rake
# frozen_string_literal: true
2011-10-08 23:36:38 +02:00
# 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__)
2011-10-08 23:36:38 +02:00
relative_url_conf = File.expand_path('config/initializers/relative_url', __dir__)
require relative_url_conf if File.exist?("#{relative_url_conf}.rb")
2011-10-08 23:36:38 +02:00
Gitlab::Application.load_tasks
2016-05-22 03:17:15 +02:00
Knapsack.load_tasks if defined?(Knapsack)