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 'rubocop/migration_helpers.rb')
-rw-r--r--rubocop/migration_helpers.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/rubocop/migration_helpers.rb b/rubocop/migration_helpers.rb
index 16a9aa53cd3..22f3931be73 100644
--- a/rubocop/migration_helpers.rb
+++ b/rubocop/migration_helpers.rb
@@ -49,6 +49,14 @@ module RuboCop
dirname(node).end_with?('db/post_migrate', 'db/geo/post_migrate')
end
+ # Returns true if we've defined an 'EnforcedSince' variable in rubocop.yml and the migration version
+ # is greater.
+ def time_enforced?(node)
+ return false unless enforced_since
+
+ version(node) > enforced_since
+ end
+
def version(node)
File.basename(node.location.expression.source_buffer.name).split('_').first.to_i
end
@@ -80,5 +88,9 @@ module RuboCop
def rubocop_path
File.expand_path(__dir__)
end
+
+ def enforced_since
+ @enforced_since ||= config.for_cop(name)['EnforcedSince']
+ end
end
end