Sha256: 6f765c752e4bab384f1585b628b590dd2733c26c4bc0942bd7116c5e625bac65

Contents?: true

Size: 1.29 KB

Versions: 19

Compression:

Stored size: 1.29 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mongo/version'

Gem::Specification.new do |s|
  s.name              = 'mongo'
  # The dup call makes `bundle install` work on ruby 1.9.3.
  # Without it rubygems tries to modify version which fails because
  # Mongo::VERSION is frozen.
  s.version           = Mongo::VERSION.dup
  s.platform          = Gem::Platform::RUBY

  s.authors           = ['Tyler Brock', 'Emily Stolfo', 'Durran Jordan']
  s.email             = 'mongodb-dev@googlegroups.com'
  s.homepage          = 'http://www.mongodb.org'
  s.summary           = 'Ruby driver for MongoDB'
  s.description       = 'A Ruby driver for MongoDB'
  s.license           = 'Apache-2.0'

  if File.exists?('gem-private_key.pem')
    s.signing_key     = 'gem-private_key.pem'
    s.cert_chain      = ['gem-public_cert.pem']
  else
    warn "[#{s.name}] Warning: No private key present, creating unsigned gem."
  end

  s.files             = Dir.glob('{bin,lib,spec}/**/*')
  s.files             += %w[mongo.gemspec LICENSE README.md CONTRIBUTING.md Rakefile]
  s.test_files        = Dir.glob('spec/**/*')

  s.executables       = ['mongo_console']
  s.require_paths     = ['lib']
  s.bindir            = 'bin'

  s.add_dependency 'bson', '>=4.4.2', '<5.0.0'
end

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/mongo-2.8.0/mongo.gemspec
mongo-2.10.5 mongo.gemspec
mongo-2.10.4 mongo.gemspec
mongo-2.9.2 mongo.gemspec
mongo-2.10.2 mongo.gemspec
mongo-2.10.1 mongo.gemspec
mongo-2.10.0 mongo.gemspec
mongo-2.9.1 mongo.gemspec
mongo-2.10.0.rc0 mongo.gemspec
mongo-2.9.1.rc0 mongo.gemspec
mongo-2.9.0 mongo.gemspec
mongo-2.9.0.rc1 mongo.gemspec
mongo-2.9.0.rc0 mongo.gemspec
mongo-2.8.0 mongo.gemspec
mongo-2.7.2 mongo.gemspec
mongo-2.8.0.rc0 mongo.gemspec
mongo-2.7.1 mongo.gemspec
mongo-2.7.0 mongo.gemspec
mongo-2.7.0.rc0 mongo.gemspec