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
More garlic config
ianwhite (author)
Sat Sep 20 22:37:22 -0700 2008
commit  c4c7d8e996862e952c1adad2dcec5af48fda1a01
tree    03379b486e3dccf18620ca4a3a36b5e8614d2e7b
parent  7f893f9e8df8a6b256016497b98ebbfaf0158243
...
17
18
19
20
21
22
 
 
 
23
24
25
26
 
 
27
28
29
30
31
 
32
33
34
...
46
47
48
49
50
 
 
51
52
53
...
61
62
63
64
65
 
 
66
67
68
...
17
18
19
 
 
 
20
21
22
23
24
 
 
25
26
27
28
29
30
 
31
32
33
34
...
46
47
48
 
 
49
50
51
52
53
...
61
62
63
 
 
64
65
66
67
68
0
@@ -17,18 +17,18 @@ 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
 
0
   # for target, default repo is 'rails', default branch is 'master'
0
-  target 'edge' do
0
+  target 'edge', :branch => 'master' do
0
     prepare do
0
       plugin 'inherit_views', :clone => true
0
       plugin 'rspec'
0
@@ -46,8 +46,8 @@ garlic do
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', :clone => true
0
-      plugin 'ianwhite-rspec'
0
-      plugin 'ianwhite-rspec-rails' do
0
+      plugin 'ianwhite-rspec', :as => 'rspec'
0
+      plugin 'ianwhite-rspec-rails', :as => 'rspec-rails' do
0
         sh "script/generate rspec -f"
0
       end
0
       run do
0
@@ -61,8 +61,8 @@ garlic do
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', :clone => true
0
-      plugin 'ianwhite-rspec'
0
-      plugin 'ianwhite-rspec-rails' do
0
+      plugin 'ianwhite-rspec', :as => 'rspec'
0
+      plugin 'ianwhite-rspec-rails', :as => 'rspec-rails' do
0
         sh "script/generate rspec -f"
0
       end
0
       run do

Comments