aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r--activesupport/Rakefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 91c874d729..ecf8b52fc5 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -28,6 +28,16 @@ task :isolated_test do
end or raise "Failures"
end
+task :bundle do
+ puts "Checking if the bundled testing requirements are up to date..."
+ result = system "gem bundle"
+ unless result
+ puts "The gem bundler is not installed. Installing."
+ system "gem install bundler"
+ system "gem bundle"
+ end
+end
+
# Create compressed packages
dist_dirs = [ "lib", "test"]