Sha256: 6db36272c158e4285fa23b8ef77996df914f9c7244aa78ff2b5c4d836f537e43
Contents?: true
Size: 234 Bytes
Versions: 23
Compression:
Stored size: 234 Bytes
Contents
module Nosync def nosync value = nosync? begin self.nosync = true yield ensure self.nosync = value end end def nosync=(value) @nosync = value end def nosync? !!@nosync end end
Version data entries
23 entries across 23 versions & 1 rubygems