b193e84974
Signed-off-by: Rémy Coutable <remy@rymai.me>
8 lines
229 B
Ruby
8 lines
229 B
Ruby
require 'tasks/gitlab/task_helpers'
|
|
|
|
# Prevent StateMachine warnings from outputting during a cron task
|
|
StateMachines::Machine.ignore_method_conflicts = true if ENV['CRON']
|
|
|
|
namespace :gitlab do
|
|
include Gitlab::TaskHelpers
|
|
end
|