summaryrefslogtreecommitdiff
path: root/lib/dsl.rb
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-02-16 23:08:46 +0200
committerPaul Buetow <paul@buetow.org>2025-02-16 23:08:46 +0200
commit556d1d13ad6ce056fb52d920e36c08192c7103c5 (patch)
treeeeb07cd50aa32c943113bc00cd7ba892ecbd890c /lib/dsl.rb
parent5c2865998aec2db34c42ee092952ec37ebd3cf16 (diff)
change foo[...] to foo(...) syntax for deps
test deps
Diffstat (limited to 'lib/dsl.rb')
-rw-r--r--lib/dsl.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dsl.rb b/lib/dsl.rb
index caed790..b9062e5 100644
--- a/lib/dsl.rb
+++ b/lib/dsl.rb
@@ -25,7 +25,7 @@ module RCM
def initialize(reset)
DSL.reset! if reset
- @id = "dsl[#{@@rcm_counter += 1}]"
+ @id = "dsl(#{@@rcm_counter += 1})"
@conds_met = true
@scheduled = []
yield self if block_given?