method

unmemoize_all

rails latest stable - Class: ActiveSupport::Freezable

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.2.1) is shown here.

unmemoize_all()
public

No documentation available.

# File activesupport/lib/active_support/memoizable.rb, line 34
      def unmemoize_all
        methods.each do |m|
          if m.to_s =~ /^_unmemoized_(.*)/
            ivar = MEMOIZED_IVAR.call($1)
            instance_variable_get(ivar).clear if instance_variable_defined?(ivar)
          end
        end
      end