blob: 90475204889c4ab22c03b3550d2e4d9b50cc9f62 (
plain)
1
2
3
4
5
6
7
8
9
|
# frozen_string_literal: true
# This class can generate a lot of output if it fails,
# so squelch the instance variable output.
class ActiveSupport::Cache::NullStore
def inspect
"<#{self.class}>"
end
end
|