5819ca1a24
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.
11 lines
304 B
Ruby
11 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
|