Sha256: 4fab66639ea8ae283bbb3c04c74773ab4b77e713c1b5d8c32c4caf1393d2d266
Contents?: true
Size: 277 Bytes
Versions: 58
Compression:
Stored size: 277 Bytes
Contents
module Bluepill module ProcessConditions class AlwaysTrue < ProcessCondition def initialize(options = {}) @below = options[:below] end def run(pid) 1 end def check(value) true end end end end
Version data entries
58 entries across 58 versions & 8 rubygems