Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/sherlock/location.rb')
-rw-r--r--lib/gitlab/sherlock/location.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/gitlab/sherlock/location.rb b/lib/gitlab/sherlock/location.rb
deleted file mode 100644
index 4bba60f3490..00000000000
--- a/lib/gitlab/sherlock/location.rb
+++ /dev/null
@@ -1,28 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Sherlock
- class Location
- attr_reader :path, :line
-
- SHERLOCK_DIR = File.dirname(__FILE__)
-
- # Creates a new Location from a `Thread::Backtrace::Location`.
- def self.from_ruby_location(location)
- new(location.path, location.lineno)
- end
-
- # path - The full path of the frame as a String.
- # line - The line number of the frame as a Fixnum.
- def initialize(path, line)
- @path = path
- @line = line
- end
-
- # Returns true if the current frame originated from the application.
- def application?
- @path.start_with?(Rails.root.to_s) && !path.start_with?(SHERLOCK_DIR)
- end
- end
- end
-end