Sha256: bfb34248e2e64a028a0265b698cad2d839f4cb0d6581293bfca66f3943703bf7
Contents?: true
Size: 656 Bytes
Versions: 1
Compression:
Stored size: 656 Bytes
Contents
require 'tap/signals/module_methods' module Tap # Signals is a module providing signaling capbilities for objects. Signals # are effectively bound to methods with pre-processing that allows inputs # from the command line (ie an ARGV) or from interfaces like HTTP that # commonly produce a parameters hash. # module Signals def signal(sig, &block) sig = sig.to_s unless signal = self.class.signals[sig] raise "unknown signal: #{sig} (#{self.class})" end signal.new(self, &block) end def signal?(sig) sig = sig.to_s self.class.signals.has_key?(sig.to_s) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tap-0.19.0 | lib/tap/signals.rb |