gitlab-org--gitlab-foss/lib/gitlab/performance_bar.rb
Rémy Coutable d39ecf1ca7 New performance bar that can be enabled with the p b shortcut
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-09 17:21:39 +02:00

7 lines
114 B
Ruby

module Gitlab
module PerformanceBar
def self.enabled?
ENV["PERFORMANCE_BAR"] == '1'
end
end
end