From 5d52a37a5c68ea541d5d958c797849fed2443632 Mon Sep 17 00:00:00 2001 From: Ian White Date: Sun, 21 Sep 2008 10:02:11 +1000 Subject: [PATCH] Updated galric_example --- garlic_example.rb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/garlic_example.rb b/garlic_example.rb index 7822ba5..8d1dd91 100644 --- a/garlic_example.rb +++ b/garlic_example.rb @@ -19,20 +19,19 @@ # and will still update from the origin url) repo 'rails', :url => 'git://github.com/rails/rails' #, :local => "~/dev/vendor/rails" # using own clone of rspec, until aliased-render-partial gets fixed. - repo 'rspec', :url => 'git://github.com/ianwhite/rspec' - repo 'rspec-rails', :url => 'git://github.com/ianwhite/rspec-rails' + repo 'rspec', :url => 'git://github.com/ianwhite/rspec' #, :local => "~/dev/ianwhite/spec" + repo 'rspec-rails', :url => 'git://github.com/ianwhite/rspec-rails'#, :local => "~/dev/ianwhite/spec" repo 'inherit_views', :path => '.' # for target, default repo is 'rails', default branch is 'master' target 'edge' target '2.0-stable', :branch => 'origin/2-0-stable' - target '2.0.3', :tag => 'v2.0.3' - target '2.1.0-RC1', :tag => 'v2.1.0_RC1' + target '2.1-stable', :branch => 'origin/2-1-stable' all_targets do prepare do - plugin 'rspec', :branch => 'origin/aliased-render-partial' - plugin 'rspec-rails', :branch => 'origin/aliased-render-partial' do + plugin 'rspec' + plugin 'rspec-rails' do sh "script/generate rspec -f" end plugin 'inherit_views', :clone => true # so we can work on it and push fixes upstream