class ConsistencyFail::Reporter

Public Instance Methods

report_has_one_problems(indexes_by_model) click to toggle source
# File lib/consistency_fail/reporter.rb, line 11
def report_has_one_problems(indexes_by_model)
  ConsistencyFail::Reporters::HasOne.new.report(indexes_by_model)
end
report_polymorphic_problems(indexes_by_model) click to toggle source
# File lib/consistency_fail/reporter.rb, line 15
def report_polymorphic_problems(indexes_by_model)
  ConsistencyFail::Reporters::Polymorphic.new.report(indexes_by_model)
end
report_validates_uniqueness_problems(indexes_by_model) click to toggle source
# File lib/consistency_fail/reporter.rb, line 7
def report_validates_uniqueness_problems(indexes_by_model)
  ConsistencyFail::Reporters::ValidatesUniquenessOf.new.report(indexes_by_model)
end