Sha256: eb1ea7b2a594479dec0882d097f10e26bf57e6c3c747ca3f5a43727eb2a15179
Contents?: true
Size: 421 Bytes
Versions: 69
Compression:
Stored size: 421 Bytes
Contents
module Guard module Jobs class Base def initialize(_options) end # @return [Symbol] :stopped once job is finished # @return [Symbol] :exit to tell Guard to terminate def foreground end def background end # Signal handler calls this, so avoid actually doing # anything other than signaling threads def handle_interrupt end end end end
Version data entries
69 entries across 69 versions & 10 rubygems