Don't generate ri or rdoc on `rake install`

This commit is contained in:
Mitchell Hashimoto 2010-07-27 19:19:32 -07:00
parent 4a4ae231eb
commit 2e189eb2c4
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ end
desc "install the gem locally"
task :install => :package do
sh %{gem install pkg/#{gemspec.name}-#{gemspec.version}}
sh %{gem install pkg/#{gemspec.name}-#{gemspec.version} --no-ri --no-rdoc}
end
desc "validate the gemspec"