mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00

One should really use a separate table instead of using polymorphic associations. See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11168 for more information.
12 lines
304 B
Ruby
12 lines
304 B
Ruby
module RuboCop
|
|
module ModelHelpers
|
|
# Returns true if the given node originated from the models directory.
|
|
def in_model?(node)
|
|
path = node.location.expression.source_buffer.name
|
|
models_path = File.join(Dir.pwd, 'app', 'models')
|
|
|
|
path.start_with?(models_path)
|
|
end
|
|
end
|
|
end
|