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.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/gitlab/sherlock.rb b/lib/gitlab/sherlock.rb
new file mode 100644
index 00000000000..6360527a7aa
--- /dev/null
+++ b/lib/gitlab/sherlock.rb
@@ -0,0 +1,19 @@
+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