Sha256: f5cecf37712a512dfbcfc6e51de9dceefe34e74035138119d6486b887469c7f1
Contents?: true
Size: 1.09 KB
Versions: 124
Compression:
Stored size: 1.09 KB
Contents
# frozen_string_literal: true module Spree # Configuration point for User model implementation. # # `Spree::UserClassHandle` allows you to configure your own implementation of a # User class or use an extension like `solidus_auth_devise`. # # @note Placeholder for name of Spree.user_class to ensure later evaluation at # runtime. # # Unfortunately, it is possible for classes to get loaded before # Spree.user_class has been set in the initializer. As a result, they end up # with class_name: "" in their association definitions. For obvious reasons, # that doesn't work. # # For now, Rails does not call to_s on the instance passed in until runtime. # So this little hack provides a wrapper around Spree.user_class so that we # can basically lazy-evaluate it. Yay! Problem solved forever. class UserClassHandle # @return [String] the name of the user class as a string. # @raise [RuntimeError] if Spree.user_class is nil def to_s fail "'Spree.user_class' has not been set yet." unless Spree.user_class "::#{Spree.user_class}" end end end
Version data entries
124 entries across 124 versions & 2 rubygems