mongo-ruby-driver/bson.gemspec

24 lines
726 B
Ruby
Raw Normal View History

2010-04-05 15:13:07 +00:00
require "lib/bson"
Gem::Specification.new do |s|
2010-04-05 15:13:07 +00:00
s.name = 'bson'
2010-04-05 15:13:07 +00:00
s.version = '1.0'#Mongo::BSON::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'Ruby implementation of BSON'
s.description = 'A Ruby BSON implementation for MongoDB. For more information about Mongo, see http://www.mongodb.org. For more information on BSON, see http://www.bsonspec.org.'
s.require_paths = ['lib']
2010-04-05 15:13:07 +00:00
s.files = ['Rakefile', 'bson.gemspec', 'LICENSE.txt']
s.files += ['lib/bson.rb'] + Dir['lib/bson/**/*.rb']
s.test_files = Dir['test/mongo_bson/*.rb']
s.has_rdoc = true
s.authors = ['Jim Menard', 'Mike Dirolf', 'Kyle Banker']
s.email = 'mongodb-dev@googlegroups.com'
s.homepage = 'http://www.mongodb.org'
end