Select Git revision
Forked from
GitLab.org / GitLab FOSS
2 commits behind, 3968 commits ahead of the upstream repository.
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
Rémy Coutable authoredSigned-off-by:
Rémy Coutable <remy@rymai.me>
migration_helpers.rb 363 B
module RuboCop
# Module containing helper methods for writing migration cops.
module MigrationHelpers
# Returns true if the given node originated from the db/migrate directory.
def in_migration?(node)
dirname = File.dirname(node.location.expression.source_buffer.name)
dirname.end_with?('db/migrate', 'db/post_migrate')
end
end
end