method

hash_digest_class=

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: Digest
hash_digest_class=(klass) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/digest.rb, line 10
      def hash_digest_class=(klass)
        raise ArgumentError, "#{klass} is expected to implement hexdigest class method" unless klass.respond_to?(:hexdigest)
        @hash_digest_class = klass
      end
Register or log in to add new notes.