From 216bca11484d5085de3688356b92a4ca64bc4f29 Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Thu, 8 May 2008 22:33:27 -0700 Subject: [PATCH] Made rake build depend on spec:update. The spec:update and mspec:update tasks will ensure that the submodule sources for your local clone are up-to-date. --- Rakefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Rakefile b/Rakefile index 344c5e1bf..5b62c00e7 100644 --- a/Rakefile +++ b/Rakefile @@ -83,6 +83,7 @@ namespace :build do task :all => %w[ spec:init + spec:update build:shotgun build:platform build:rbc @@ -288,6 +289,11 @@ namespace :spec do desc "Initialize git submodules for mspec and rubyspec" task :init => 'mspec:init' + desc "Update submodule sources for mspec and rubyspec" + task :update => 'mspec:update' + + task :pull => :update + desc "Run continuous integration examples" task :ci => :build do clear_compiler -- 2.11.4.GIT