theodi/office-calendar

View on GitHub
lib/active_support/cache/no_store.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ActiveSupport
  module Cache
    class NoStore < Store
      def read_entry(name, options)
        return nil
      end
      def write_entry(name, value, options)
      end
      def delete_entry(name, options)
      end
    end
  end
end