Sha256: d4a40bbe3579d7cd1a7ed3ee0777e1b60086d5925d41c7e6006c973147cf879f
Contents?: true
Size: 495 Bytes
Versions: 58
Compression:
Stored size: 495 Bytes
Contents
require_relative 'concerns/deputisable' module NdrDevSupport module RakeCI module CommitCop # This cop checks for modified migrations class ModifiedMigration include Deputisable def check(changes) return if changes[:modified].none?(&migration_file?) attachment(:danger, 'Modified Migration', 'Migrations should not be modified. Create another migration.') end end end end end
Version data entries
58 entries across 58 versions & 1 rubygems