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
Commented out local reference repos from the garlic_example
ianwhite (author)
Sat Sep 20 22:57:26 -0700 2008
commit  3e21b484071144e6f97ffee4af5eaee33c1a82ba
tree    4b4f75a8f52fa8ba8147b4b4565c9309916da06b
parent  cef35b9ac923527394931aa13251724a1e87f53a
...
17
18
19
20
21
22
 
 
 
23
24
25
26
 
 
27
28
29
...
17
18
19
 
 
 
20
21
22
23
24
 
 
25
26
27
28
29
0
@@ -17,13 +17,13 @@ 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/spec"
0
-  repo 'rspec-rails', :url => 'git://github.com/dchelimsky/rspec-rails' , :local => "~/dev/vendor/spec"
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/spec"
0
+  repo 'rspec-rails', :url => 'git://github.com/dchelimsky/rspec-rails' #, :local => "~/dev/vendor/spec"
0
   
0
   # these are for testing rails-2.0-2.1 branch
0
-  repo 'ianwhite-rspec', :url => 'git://github.com/ianwhite/rspec' , :local => "~/dev/ianwhite/spec"
0
-  repo 'ianwhite-rspec-rails', :url => 'git://github.com/ianwhite/rspec-rails' , :local => "~/dev/ianwhite/spec"
0
+  repo 'ianwhite-rspec', :url => 'git://github.com/ianwhite/rspec' #, :local => "~/dev/ianwhite/spec"
0
+  repo 'ianwhite-rspec-rails', :url => 'git://github.com/ianwhite/rspec-rails' #, :local => "~/dev/ianwhite/spec"
0
   
0
   repo 'inherit_views', :path => '.'
0
 

Comments