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 !
Updated garlic_example - we're only supporting 2.1.x and edge now
ianwhite (author)
Sat Sep 13 20:11:36 -0700 2008
commit  09abe3172f673f36cd2870a562f33e91c9c014d4
tree    aab7148afd6b04bf40d565ed34797c5322d953b5
parent  780f45b31f0ce1d6ec78783ed961b06e27cd5a97
...
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 
 
 
49
50
51
52
53
54
55
56
57
58
59
 
60
61
62
...
23
24
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
27
28
29
 
 
 
 
 
 
30
31
32
33
34
35
36
37
0
@@ -23,40 +23,15 @@ garlic do
0
   repo 'response_for', :path => '.'
0
 
0
   # for target, default repo is 'rails', default branch is 'master'
0
-  target 'edge' do
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.1-RC1' do
0
-    prepare do
0
-      plugin 'response_for', :clone => true
0
-    end
0
-  end
0
-  
0
-  target '2.0-stable', :branch => 'origin/2-0-stable' do
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
-    prepare do
0
-      plugin 'response_for', :branch => 'origin/2.0-stable', :clone => true
0
-    end
0
-  end
0
+  target 'edge'
0
+  target '2.1-stable', :branch => 'origin/2-1-stable'
0
+  target '2.1.1', :tag => 'v2.1.1'
0
   
0
-  target '2.0.3', :tag => 'v2.0.3' do
0
-    prepare do
0
-      plugin 'response_for', :branch => 'origin/2.0-stable', :clone => true
0
-    end
0
-  end
0
-
0
   all_targets do
0
     prepare do
0
       plugin 'rspec'
0
       plugin('rspec-rails') { sh "script/generate rspec -f" }
0
+      plugin 'response_for', :clone => true
0
     end
0
   
0
     run do

Comments