summaryrefslogtreecommitdiff
path: root/lib/gitlab/sherlock.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/sherlock.rb')
-rw-r--r--lib/gitlab/sherlock.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/gitlab/sherlock.rb b/lib/gitlab/sherlock.rb
deleted file mode 100644
index a1471c9de47..00000000000
--- a/lib/gitlab/sherlock.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-require 'securerandom'
-
-module Gitlab
- module Sherlock
- @collection = Collection.new
-
- class << self
- attr_reader :collection
- end
-
- def self.enabled?
- Rails.env.development? && !!ENV['ENABLE_SHERLOCK']
- end
-
- def self.enable_line_profiler?
- RUBY_ENGINE == 'ruby'
- end
- end
-end