forked from stripe-archive/mosql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmosql.gemspec
24 lines (20 loc) · 892 Bytes
/
mosql.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
# -*- coding: utf-8 -*-
$:.unshift(File.expand_path("lib", File.dirname(__FILE__)))
require 'mosql/version'
Gem::Specification.new do |gem|
gem.authors = ["Nelson Elhage"]
gem.email = ["[email protected]"]
gem.description = %q{A library for streaming MongoDB to SQL}
gem.summary = %q{MongoDB -> SQL streaming bridge}
gem.homepage = "https://github.com/stripe/mosql"
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 = "mosql"
gem.require_paths = ["lib"]
gem.version = MoSQL::VERSION
%w[sequel pg mongo bson_ext rake log4r json
mongoriver].each { |dep| gem.add_runtime_dependency(dep) }
gem.add_development_dependency "minitest"
gem.add_development_dependency "mocha"
end