class ActiveRecordDoctor::Error::ConfigureCalledTwice
Public Class Methods
new()
click to toggle source
Calls superclass method
# File lib/active_record_doctor/errors.rb, line 119 def initialize super("The configuration file called ActiveRecordDoctor.configuration multiple times") end
Public Instance Methods
details()
click to toggle source
# File lib/active_record_doctor/errors.rb, line 123 def details <<-MESSAGE The configuration file in use has called ActiveRecordDoctor.configure more than once but should do so EXACTLY ONCE. Please ensure that method is called exactly once and retry. MESSAGE end