class MoneyExchange::Cache::NullStore

Public Instance Methods

fetch(*args) click to toggle source
# File lib/money_exchange/cache/null_store.rb, line 12
def fetch(*args)
  nil
end
read(*args) click to toggle source
# File lib/money_exchange/cache/null_store.rb, line 4
def read(*args)
  nil
end
write(*args) click to toggle source
# File lib/money_exchange/cache/null_store.rb, line 8
def write(*args)
  nil
end