aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-05-03 00:34:44 -0700
committerAndre Arko <andre@arko.net>2015-05-03 00:34:44 -0700
commit96db405903c68416878a59ce3aae2b5133433cf3 (patch)
treec7960a8a707f0007f74b898a798bc3960089e57d /Rakefile
parentd386ed1b342711fb3d307a7ca640cafc64b3be85 (diff)
parent84c32d00d59bb90a95eef72422f52253835aa1a5 (diff)
downloadbundler-96db405903c68416878a59ce3aae2b5133433cf3.tar.gz
Merge tag 'v1.9.6'
Version 1.9.6 Conflicts: CHANGELOG.md lib/bundler/installer.rb lib/bundler/resolver.rb lib/bundler/rubygems_integration.rb lib/bundler/source/rubygems.rb lib/bundler/version.rb man/bundle-config.ronn spec/install/post_bundle_message_spec.rb
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index ec21f6a2..462c3be1 100644
--- a/Rakefile
+++ b/Rakefile
@@ -291,12 +291,15 @@ begin
task :clean do
rm_rf "lib/bundler/man"
end
+
+ task(:require) { }
end
rescue LoadError
namespace :man do
- task(:build) { warn "Install the ronn gem to be able to release!" }
- task(:clean) { warn "Install the ronn gem to be able to release!" }
+ task(:require) { abort "Install the ronn gem to be able to release!" }
+ task(:build) { warn "Install the ronn gem to build the help pages" }
+ task(:clean) { }
end
end
@@ -308,6 +311,6 @@ end
require 'bundler/gem_tasks'
task :build => ["man:clean", "man:build"]
-task :release => ["man:clean", "man:build"]
+task :release => ["man:require", "man:clean", "man:build"]
task :default => :spec