diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-09-13 15:10:29 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-09-13 15:10:29 -0500 |
commit | fff3f0ae0cec1061f8b3e5cb44e189e94a4ad44f (patch) | |
tree | 57619ca4425ec52d14e080fedf2bdbe16a28aaed /activesupport/Rakefile | |
parent | ef38e6756272ecc1c91247639f76532b79c84bfd (diff) | |
download | rails-fff3f0ae0cec1061f8b3e5cb44e189e94a4ad44f.tar.gz rails-fff3f0ae0cec1061f8b3e5cb44e189e94a4ad44f.tar.bz2 rails-fff3f0ae0cec1061f8b3e5cb44e189e94a4ad44f.zip |
Detect missing dependencies and automatically run bundler
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r-- | activesupport/Rakefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile index ecf8b52fc5..91c874d729 100644 --- a/activesupport/Rakefile +++ b/activesupport/Rakefile @@ -28,16 +28,6 @@ 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"] |