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 targets, now tested against: edge, 2.0-stable, 2.0.2, 2.0.3, 
2.1-RC1
ianwhite (author)
Thu May 22 08:45:09 -0700 2008
commit  6243c1b784326a895d8a8c212955b0ab1b708df2
tree    d59738d8b0a5b66ed2ac809e247db6fd6a515311
parent  50f9a92de80f1fb4832d10444c681a1c2d287b92
...
17
18
19
20
21
22
 
 
 
23
24
25
...
29
30
31
 
 
 
 
 
 
32
33
34
...
40
41
42
 
 
 
 
 
 
43
44
45
...
17
18
19
 
 
 
20
21
22
23
24
25
...
29
30
31
32
33
34
35
36
37
38
39
40
...
46
47
48
49
50
51
52
53
54
55
56
57
0
@@ -17,9 +17,9 @@ garlic do
0
 
0
   # repo, give a url, specify :local to use a local repo (faster
0
   # and will still update from the origin url)
0
-  repo 'rails', :url => 'git://github.com/rails/rails' #,  :local => "~/dev/vendor/rails"
0
-  repo 'rspec', :url => 'git://github.com/dchelimsky/rspec' #,  :local => "~/dev/vendor/rspec"
0
-  repo 'rspec-rails', :url => 'git://github.com/dchelimsky/rspec-rails' #, :local => "~/dev/vendor/rspec-rails"
0
+  repo 'rails', :url => 'git://github.com/rails/rails',  :local => "~/dev/vendor/rails"
0
+  repo 'rspec', :url => 'git://github.com/dchelimsky/rspec',  :local => "~/dev/vendor/rspec"
0
+  repo 'rspec-rails', :url => 'git://github.com/dchelimsky/rspec-rails', :local => "~/dev/vendor/rspec-rails"
0
   repo 'response_for', :path => '.'
0
 
0
   # for target, default repo is 'rails', default branch is 'master'
0
@@ -29,6 +29,12 @@ garlic do
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
@@ -40,6 +46,12 @@ garlic do
0
       plugin 'response_for', :branch => 'origin/2.0-stable', :clone => true
0
     end
0
   end
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

Comments