updated Rakefile to build bson and bson_ext

This commit is contained in:
Kyle Banker 2010-04-05 13:50:51 -04:00
parent b45887fdd0
commit c8fc728421
1 changed files with 6 additions and 3 deletions

View File

@ -141,9 +141,12 @@ namespace :gem do
desc "Install the optional c extensions"
task :install_extensions do
sh "gem build mongo-extensions.gemspec"
sh "gem install mongo_ext-*.gem"
sh "rm mongo_ext-*.gem"
sh "gem build bson.gemspec"
sh "gem build bson_ext.gemspec"
sh "gem install bson-*.gem"
sh "gem install bson_ext-*.gem"
sh "rm bson-*.gem"
sh "rm bson_ext-*.gem"
end
end