class Locomotive::Steam::NoCacheService

Public Instance Methods

fetch(key, options = {}, &block) click to toggle source
# File lib/locomotive/steam/services/no_cache_service.rb, line 6
def fetch(key, options = {}, &block)
  @last_response = block.call
end
read(key) click to toggle source
# File lib/locomotive/steam/services/no_cache_service.rb, line 10
def read(key)
  nil
end