forked from stripe-archive/mongoriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongoriver.gemspec
26 lines (22 loc) · 969 Bytes
/
mongoriver.gemspec
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
# -*- coding: utf-8 -*-
$:.unshift(File.expand_path("lib", File.dirname(__FILE__)))
require 'mongoriver/version'
Gem::Specification.new do |gem|
gem.authors = ["Greg Brockman"]
gem.email = ["[email protected]"]
gem.description = %q{Some tools and libraries to simplify tailing the mongod oplog}
gem.summary = %q{monogdb oplog-tailing utilities.}
gem.homepage = ""
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "mongoriver"
gem.require_paths = ["lib"]
gem.version = Mongoriver::VERSION
gem.add_runtime_dependency('mongo', '~> 1.7')
gem.add_runtime_dependency('bson')
gem.add_runtime_dependency('log4r')
gem.add_development_dependency('rake')
gem.add_development_dependency('minitest')
gem.add_development_dependency('mocha', '>= 0.13')
end