2011-10-08 17:36:38 -04:00
|
|
|
#!/usr/bin/env rake
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
require File.expand_path('../config/application', __FILE__)
|
|
|
|
|
2016-02-25 17:10:32 -05:00
|
|
|
relative_url_conf = File.expand_path('../config/initializers/relative_url', __FILE__)
|
|
|
|
require relative_url_conf if File.exist?("#{relative_url_conf}.rb")
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
Gitlab::Application.load_tasks
|
2016-05-21 21:17:15 -04:00
|
|
|
|
2016-06-07 13:29:33 -04:00
|
|
|
Knapsack.load_tasks if defined?(Knapsack)
|