module Crawlable def self.included(base) base.extend ClassMethods end module ClassMethods def acts_as_crawlable(*args, &block) end end end