public
Description: response for lets you decorate your actions respond_to blocks
Homepage: http://blog.ardes.com/response_for
Clone URL: git://github.com/ianwhite/response_for.git
Click here to lend your support to: response_for and make a donation at www.pledgie.com !
Fixed garlic_example.rb
ianwhite (author)
Wed Apr 30 08:23:54 -0700 2008
commit  69cfeabc043e00ba4b16b09e8c6d58f7843e1db3
tree    f05d165f979604875d2f5fe6c9f6bf4619341e90
parent  3743e5ba71c47e4256649e631318bd3c45d78a1c
...
24
25
26
27
 
 
 
28
29
30
31
 
 
 
32
33
34
35
 
 
 
36
37
38
...
24
25
26
 
27
28
29
30
31
32
 
33
34
35
36
37
38
 
39
40
41
42
43
44
0
@@ -24,15 +24,21 @@ garlic do
0
 
0
   # for target, default repo is 'rails', default branch is 'master'
0
   target 'edge' do
0
-    plugin 'response_for', :clone => true # so we can work on it and push fixes upstream
0
+    prepare do
0
+      plugin 'response_for', :clone => true # so we can work on it and push fixes upstream
0
+    end
0
   end
0
   
0
   target '2.0-stable', :branch => 'origin/2-0-stable' do
0
-    plugin 'response_for', :branch => 'origin/2.0-stable', :clone => true
0
+    prepare do
0
+      plugin 'response_for', :branch => 'origin/2.0-stable', :clone => true
0
+    end
0
   end
0
     
0
   target '2.0.2', :tag => 'v2.0.2' do
0
-    plugin 'response_for', :branch => 'origin/2.0-stable', :clone => true
0
+    prepare do
0
+      plugin 'response_for', :branch => 'origin/2.0-stable', :clone => true
0
+    end
0
   end
0
 
0
   all_targets do

Comments