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
Updated galric, REAMDE, and CHANGELOG to reflect that inherit_views branched for 
rails 2.0 and 2.1
ianwhite (author)
Sat Sep 20 17:30:26 -0700 2008
commit  29e9d19dc83ed74450ade124c70c5c1e9723966a
tree    02ae9b19db390f661c90f00e31a43e0b9a9db651
parent  5d52a37a5c68ea541d5d958c797849fed2443632
...
 
 
1
2
3
...
1
2
3
4
5
0
@@ -1,3 +1,5 @@
0
+* branched fro rails 2.0 and 2.1 in rails-2.0-2.1, edge rails follows master branch
0
+
0
 * Now using garlic for CI
0
 
0
 * Compatibility update for the new ActionView::Partial refactoring.
...
1
2
 
 
 
 
 
 
 
 
3
4
5
...
1
2
3
4
5
6
7
8
9
10
11
12
13
0
@@ -1,5 +1,13 @@
0
 http://plugins.ardes.com > inherit_views
0
 
0
+= Status
0
+
0
+inherit_views works on rails 2.0-stable and 2.1-stable.  To get this version checkout the rails-2.0-2.1 branch
0
+
0
+  git clone git://github.com/ianhwite/inherit_views rails-2.0-2.1
0
+  
0
+inherit_views is broken on edge at the moment.  Edge's view internals have changed a lot, and so I'm working on a rewrite for edge.  This is found in the master branch
0
+
0
 = inherit_views
0
 
0
 This plugin allows your controllers to inherit their views from parent controllers.  The default behaviour is to inherit along the ancestor path of the controller, but you can also specify custom inherit view paths to search.
...
24
25
26
27
28
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
31
32
...
34
35
36
37
38
39
40
...
24
25
26
 
 
 
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
...
48
49
50
 
51
52
53
0
@@ -24,9 +24,23 @@ garlic do
0
   repo 'inherit_views', :path => '.'
0
 
0
   # for target, default repo is 'rails', default branch is 'master'
0
-  target 'edge'
0
-  target '2.0-stable', :branch => 'origin/2-0-stable'
0
-  target '2.1-stable', :branch => 'origin/2-1-stable'
0
+  target 'edge' do
0
+    prepare do
0
+      plugin 'inherit_views', :clone => true
0
+    end
0
+  end
0
+  
0
+  target '2.0-stable', :branch => 'origin/2-0-stable' do
0
+    prepare do
0
+      plugin 'inherit_views', :branch => 'origin/rails-2.0-2.1'
0
+    end
0
+  end
0
+  
0
+  target '2.1-stable', :branch => 'origin/2-1-stable' do
0
+    prepare do
0
+      plugin 'inherit_views', :branch => 'origin/rails-2.0-2.1'
0
+    end
0
+  end
0
 
0
   all_targets do
0
     prepare do
0
@@ -34,7 +48,6 @@ garlic do
0
       plugin 'rspec-rails' do
0
         sh "script/generate rspec -f"
0
       end
0
-      plugin 'inherit_views', :clone => true # so we can work on it and push fixes upstream
0
     end
0
   
0
     run do

Comments

jlsync Mon Oct 13 14:13:03 -0700 2008

the w and h are swapped on the clone path

git clone git://github.com/ianwhite/inherit_views rails-2.0-2.1
ianwhite Mon Oct 13 15:21:39 -0700 2008

w and h?

ianwhite Mon Oct 13 15:51:01 -0700 2008

Ah got it, thanks