-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathem-mongo.gemspec
More file actions
executable file
·30 lines (22 loc) · 894 Bytes
/
em-mongo.gemspec
File metadata and controls
executable file
·30 lines (22 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'em-mongo/version.rb' #for version
Gem::Specification.new do |s|
s.name = 'em-mongo'
s.version = EventMachine::Mongo::VERSION
s.authors = ['bcg', 'PlasticLizard']
s.email = 'brenden.grace@gmail.com'
s.date = "2010-12-01"
s.description = 'EventMachine driver for MongoDB.'
s.homepage = 'https://github.com/bcg/em-mongo'
s.rubyforge_project = 'em-mongo'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.extra_rdoc_files = ["README.rdoc"]
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = '1.3.6'
s.summary = 'An EventMachine driver for MongoDB.'
s.add_dependency 'eventmachine', ['>=0.12.10', '< 2.0']
s.add_dependency 'bson', ['>=1.9.2' , '< 2.0']
end