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 !
rails 2.2.0 now included in garlic
Updated to use garlic gem
ianwhite (author)
Wed Oct 29 21:42:46 -0700 2008
commit  1378228e60ddb211ca4f53ed69d20b547baae798
tree    fe4cbbb1b16fe07f70713e64c0fda0ea4ae54ee1
parent  94749ff29a5b6103f1097aa97ab7a30ff4a69d8e
...
1
2
3
4
5
 
...
1
2
 
 
 
3
0
@@ -1,5 +1,3 @@
0
 .DS_Store
0
 doc/*
0
-garlic
0
-garlic.rb
0
-garlic_report.txt
0
+.garlic_work
...
5
6
7
 
8
9
10
...
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
...
5
6
7
8
9
10
11
...
68
69
70
 
 
 
 
 
 
 
 
 
 
 
71
72
73
0
@@ -5,6 +5,7 @@ $LOAD_PATH.unshift(rspec_base) if File.exist?(rspec_base) and !$LOAD_PATH.includ
0
 require 'spec/rake/spectask'
0
 require 'spec/rake/verify_rcov'
0
 require 'rake/rdoctask'
0
+begin; require 'garlic/tasks'; rescue LoadError; end
0
 
0
 plugin_name = 'response_for'
0
 
0
@@ -67,17 +68,6 @@ namespace :doc do
0
   task :all => ["spec:doc:html", "spec:doc", "spec:rcov", "doc"]
0
 end
0
 
0
-# load up garlic if it's here
0
-if File.directory?(File.join(File.dirname(__FILE__), 'garlic'))
0
-  require File.join(File.dirname(__FILE__), 'garlic/lib/garlic_tasks')
0
-  require File.join(File.dirname(__FILE__), 'garlic')
0
-end
0
-
0
-desc "clone the garlic repo (for running ci tasks)"
0
-task :get_garlic do
0
-  sh "git clone git://github.com/ianwhite/garlic.git garlic"
0
-end
0
-
0
 task :cruise do
0
   # run the garlic task, capture the output, if succesful make the docs and copy them to ardes
0
   begin

Comments