class ADAL::NoopCache
A cache implementation that holds no values and ignores all method calls.
Public Instance Methods
find(*)
click to toggle source
# File lib/adal/noop_cache.rb, line 34 def find(*) [] end
noop(*)
click to toggle source
Swallows any number of parameters and returns nil.
# File lib/adal/noop_cache.rb, line 27 def noop(*); end