Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
entity_cache / lib / entity_cache / storage / temporary / scope / exclusive.rb
Size: Mime:
class EntityCache
  module Storage
    class Temporary
      module Scope
        class Exclusive < Temporary
          def records
            @records ||= {}
          end
        end
      end
    end
  end
end