-
Notifications
You must be signed in to change notification settings - Fork 56
/
wonderdog.gemspec
32 lines (26 loc) · 1.16 KB
/
wonderdog.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
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/wonderdog/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'wonderdog'
gem.homepage = 'https://github.com/infochimps-labs/wonderdog'
gem.licenses = ["Apache 2.0"]
gem.email = '[email protected]'
gem.authors = ['Infochimps', 'Philip (flip) Kromer', 'Jacob Perkins', 'Travis Dempsey', 'Dhruv Bansal']
gem.version = Wonderdog::VERSION
gem.summary = 'Make Hadoop and ElasticSearch play together nicely.'
gem.description = <<-EOF
Wonderdog provides code in both Ruby and Java to make Elasticsearch
a more fully-fledged member of both the Hadoop and Wukong
ecosystems.
For the Java side, Wonderdog provides InputFormat and OutputFormat
classes for use with Hadoop (esp. Hadoop Streaming) and Pig.
For the Ruby side, Wonderdog provides extensions for wu-hadoop to
make running Hadoop Streaming jobs written in Wukong against
ElasticSearch easier.
EOF
gem.files = `git ls-files`.split("\n")
gem.executables = []
gem.test_files = gem.files.grep(/^spec/)
gem.require_paths = ['lib']
gem.add_dependency('wukong-hadoop', '0.2.0')
end