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_example
ianwhite (author)
Sat Sep 20 17:02:11 -0700 2008
commit  5d52a37a5c68ea541d5d958c797849fed2443632
tree    4c56f63aea77b984bd6654214eeb6fb63ddc2fa6
parent  3afda8be6322bf8cc56d5876b695a95c2dfa1dc7
...
19
20
21
22
23
 
 
24
25
26
27
28
29
30
 
31
32
33
34
35
 
 
36
37
38
...
19
20
21
 
 
22
23
24
25
26
27
28
 
 
29
30
31
32
 
 
33
34
35
36
37
0
@@ -19,20 +19,19 @@ garlic do
0
   # and will still update from the origin url)
0
   repo 'rails', :url => 'git://github.com/rails/rails' #,  :local => "~/dev/vendor/rails"
0
   # using own clone of rspec, until aliased-render-partial gets fixed.
0
-  repo 'rspec', :url => 'git://github.com/ianwhite/rspec'
0
-  repo 'rspec-rails', :url => 'git://github.com/ianwhite/rspec-rails'
0
+  repo 'rspec', :url => 'git://github.com/ianwhite/rspec' #, :local => "~/dev/ianwhite/spec"
0
+  repo 'rspec-rails', :url => 'git://github.com/ianwhite/rspec-rails'#, :local => "~/dev/ianwhite/spec"
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.0.3', :tag => 'v2.0.3'
0
-  target '2.1.0-RC1', :tag => 'v2.1.0_RC1' 
0
+  target '2.1-stable', :branch => 'origin/2-1-stable'
0
 
0
   all_targets do
0
     prepare do
0
-      plugin 'rspec', :branch => 'origin/aliased-render-partial'
0
-      plugin 'rspec-rails', :branch => 'origin/aliased-render-partial' do
0
+      plugin 'rspec'
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

Comments