2012-02-07 01:18:44 +00:00
$: . unshift ( File . join ( File . dirname ( __FILE__ ) , 'lib' ) )
require 'bson'
2010-03-17 19:30:33 +00:00
Gem :: Specification . new do | s |
2010-04-05 15:13:07 +00:00
s . name = 'bson'
2010-03-17 19:30:33 +00:00
2010-04-05 15:22:53 +00:00
s . version = BSON :: VERSION
2010-03-17 19:30:33 +00:00
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-12-30 21:39:00 +00:00
s . files = [ 'LICENSE.txt' ]
2010-04-05 15:13:07 +00:00
s . files += [ 'lib/bson.rb' ] + Dir [ 'lib/bson/**/*.rb' ]
2010-07-13 13:09:39 +00:00
s . files += [ 'bin/b2json' , 'bin/j2bson' ]
2011-08-09 22:00:03 +00:00
s . test_files = Dir [ 'test/bson/*.rb' , 'test/support/hash_with_indifferent_access.rb' ]
2010-03-17 19:30:33 +00:00
2010-07-13 13:09:39 +00:00
s . executables = [ 'b2json' , 'j2bson' ]
2010-05-28 18:01:51 +00:00
2010-03-17 19:30:33 +00:00
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