Skip to content

Commit b32a437

Browse files
author
webdev778
committed
Restore Ruby 2.5 compat
1 parent 3b85bdd commit b32a437

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class Interscript::DSL::Group::Parallel < Interscript::DSL::Group
2-
def initialize(&block)
3-
@node = Interscript::Node::Group::Parallel.new
2+
def initialize(reverse_run: nil, &block)
3+
@node = Interscript::Node::Group::Parallel.new(reverse_run: reverse_run)
44
self.instance_exec(&block)
55
end
66
end

0 commit comments

Comments
 (0)