public
Description: rails plugin that enables inheritance of views along a controller class heirachy
Homepage: http://ianwhite.github.com/inherit_views
Clone URL: git://github.com/ianwhite/inherit_views.git
Fixed galric config (run block was inside the prepare block by mistake)
ianwhite (author)
Sun Sep 21 00:52:28 -0700 2008
commit  e2d2e7e84ceb8da6d69bbea453f083c3d1dd4de0
tree    4f90160c5c2f29ed664e33a46d3a8a51df9b510c
parent  3e21b484071144e6f97ffee4af5eaee33c1a82ba
...
35
36
37
38
39
40
41
 
 
 
 
42
43
44
...
50
51
52
53
54
55
56
 
 
 
 
57
58
59
...
65
66
67
68
69
70
71
 
 
 
 
72
73
74
...
35
36
37
 
 
 
 
38
39
40
41
42
43
44
...
50
51
52
 
 
 
 
53
54
55
56
57
58
59
...
65
66
67
 
 
 
 
68
69
70
71
72
73
74
0
@@ -35,10 +35,10 @@ garlic do
0
       plugin 'rspec-rails' do
0
         sh "script/generate rspec -f"
0
       end
0
-      run do
0
-        cd "vendor/plugins/inherit_views" do
0
-          sh "rake spec:rcov:verify"
0
-        end
0
+    end
0
+    run do
0
+      cd "vendor/plugins/inherit_views" do
0
+        sh "rake spec:rcov:verify"
0
       end
0
     end
0
   end
0
@@ -50,10 +50,10 @@ garlic do
0
       plugin 'ianwhite-rspec-rails', :as => 'rspec-rails' do
0
         sh "script/generate rspec -f"
0
       end
0
-      run do
0
-        cd "vendor/plugins/inherit_views" do
0
-          sh "rake spec"
0
-        end
0
+    end
0
+    run do
0
+      cd "vendor/plugins/inherit_views" do
0
+        sh "rake spec"
0
       end
0
     end
0
   end
0
@@ -65,10 +65,10 @@ garlic do
0
       plugin 'ianwhite-rspec-rails', :as => 'rspec-rails' do
0
         sh "script/generate rspec -f"
0
       end
0
-      run do
0
-        cd "vendor/plugins/inherit_views" do
0
-          sh "rake spec"
0
-        end
0
+    end
0
+    run do
0
+      cd "vendor/plugins/inherit_views" do
0
+        sh "rake spec"
0
       end
0
     end
0
   end

Comments