Sha256: 603862275101863b6b33bca3c366f39afd06ac421a72ffe2cf38b20a60708413
Contents?: true
Size: 1.09 KB
Versions: 8
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 extnesion 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
8 entries across 8 versions & 1 rubygems