about summary refs log tree commit homepage
path: root/lib/dtas/pipeline.rb
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2022-01-20 18:34:16 +0000
committerEric Wong <e@80x24.org>2022-01-21 19:54:41 +0000
commitc3b34b1693e7b35841d87dae0dce8ccecebe9008 (patch)
treed83d7e9f368a4817f6682165b47148ca27b1998b /lib/dtas/pipeline.rb
parentf0da7e664140cb1000d22db5509168b3d82b728b (diff)
downloaddtas-c3b34b1693e7b35841d87dae0dce8ccecebe9008.tar.gz
This allows us to jettison a bunch of compatibility code since
we've started using Etc.nprocessors and String#- (uminus) in
more places.  The Ruby core team doesn't support <= 2.5, even.
Diffstat (limited to 'lib/dtas/pipeline.rb')
-rw-r--r--lib/dtas/pipeline.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/dtas/pipeline.rb b/lib/dtas/pipeline.rb
index eb2af89..1bebe87 100644
--- a/lib/dtas/pipeline.rb
+++ b/lib/dtas/pipeline.rb
@@ -1,12 +1,9 @@
-# Copyright (C) 2017-2020 all contributors <dtas-all@nongnu.org>
+# Copyright (C) all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 require_relative '../dtas'
-require_relative 'spawn_fix'
 
 module DTAS::Pipeline # :nodoc:
-  include DTAS::SpawnFix
-
   # Process.spawn wrapper which supports running Proc-like objects in
   # a separate process, not just external commands.
   # Returns the pid of the spawned process