class ActiveRecordDoctor::Error::DuplicateGlobalSetting
Public Class Methods
new(name)
click to toggle source
Calls superclass method
# File lib/active_record_doctor/errors.rb, line 211 def initialize(name) super("Global #{name} was set twice") end
Public Instance Methods
details()
click to toggle source
# File lib/active_record_doctor/errors.rb, line 215 def details <<-MESSAGE The configuration file set the same global setting twice. Each global setting must be set AT MOST ONCE. Please ensure all global settings are set at most once and retry. MESSAGE end