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
Using ianwhite clone of rspec for time being
ianwhite (author)
Wed May 21 16:11:19 -0700 2008
commit  234333a9ecbea96815867d86751b3099c401108c
tree    b2f151d421fbc0924f8f8838054fd096eae19bb1
parent  36669d40ecebc2f11152e7489341039da8213943
...
18
19
20
21
 
 
22
23
24
...
29
30
31
32
 
33
34
35
...
18
19
20
 
21
22
23
24
25
...
30
31
32
 
33
34
35
36
0
@@ -18,7 +18,8 @@ garlic do
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/rspec"
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 'inherit_views', :path => '.'
0
 
0
@@ -29,7 +30,7 @@ garlic do
0
 
0
   all_targets do
0
     prepare do
0
-      plugin 'rspec'
0
+      plugin 'rspec', :branch => 'origin/aliased-render-partial'
0
       plugin 'rspec-rails', :branch => 'origin/aliased-render-partial' do
0
         sh "script/generate rspec -f"
0
       end

Comments