summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-08-23 16:45:56 -0700
committerCarl Lerche <carllerche@mac.com>2010-08-23 17:06:14 -0700
commitdc02df1ea91120e08487d1f022015caf30592e38 (patch)
treef0ff8b2b9c860a82bae43eeceee82a30baaadc78
parent8f4f10b9e2abd3a9015079da7226c8bd9127e247 (diff)
downloadbundler-dc02df1ea91120e08487d1f022015caf30592e38.tar.gz
Remove a duplicate gem building task
-rw-r--r--Rakefile11
1 files changed, 0 insertions, 11 deletions
diff --git a/Rakefile b/Rakefile
index 55c661d342..b24573de9e 100644
--- a/Rakefile
+++ b/Rakefile
@@ -137,17 +137,6 @@ namespace :vendor do
end
end
-begin
- require 'rake/gempackagetask'
-rescue LoadError
- task(:gem) { $stderr.puts '`gem install rake` to package gems' }
-else
- Rake::GemPackageTask.new(gemspec) do |pkg|
- pkg.gem_spec = gemspec
- end
- task :gem => [:build, :gemspec]
-end
-
desc "install the gem locally"
task :install => :package do
sh %{gem install pkg/#{gemspec.name}-#{gemspec.version}}