Subject: Re: A more elegant way to do this?
From: Robin Stocker <robin nibor.org>
Date: Fri, 12 May 2006 19:47:28 +0900
References: 192311
In-reply-to: 192311
Tim Uckun wrote:
> conf['crontables'][group].each { | tab_item|
> tab_entries << tab_item
> }
A small suggestion for the above if tab_entries is an array:
tab_entries.concat(conf['crontables'][group])