From e505d67f45bce4cf253a912effe0c178edacd523 Mon Sep 17 00:00:00 2001 From: Marco Colli Date: Wed, 11 Sep 2019 13:25:32 +0200 Subject: [PATCH] Clarify in README that tasks are run in parallel --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 77dc5a96..3ec53c47 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ Run `whenever --help` for a complete list of options for selecting the schedule ```ruby every 3.hours do # 1.minute 1.day 1.week 1.month 1.year is also supported + # the following tasks are run in parallel (not in sequence) runner "MyModel.some_process" rake "my:rake:task" command "/usr/bin/my_great_command"