From c6c74ff6dfe017774755ffd1f660de8f31224f78 Mon Sep 17 00:00:00 2001 From: David Abdemoulaie Date: Sun, 18 Jan 2009 03:19:03 +0800 Subject: [PATCH] Modified capfile to allow plugins Signed-off-by: Reinier Balt --- Capfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Capfile b/Capfile index 0402d1a1..85817f02 100644 --- a/Capfile +++ b/Capfile @@ -1,2 +1,3 @@ load 'deploy' if respond_to?(:namespace) # cap2 differentiator -load 'config/deploy' \ No newline at end of file +Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) } +load 'config/deploy'