class Fabrication::MisplacedFabricateError
Public Class Methods
Source
# File lib/fabrication/errors/misplaced_fabricate_error.rb, line 3 def initialize(name) super("You tried to fabricate `#{name}` while Fabricators were still loading. " \ "Check your fabricator files and make sure you didn't accidentally type " \ '`Fabricate` instead of `Fabricator` in there somewhere.') end
Calls superclass method