-
Notifications
You must be signed in to change notification settings - Fork 57
/
wukong.gemspec
36 lines (29 loc) · 1.48 KB
/
wukong.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
33
34
35
36
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/wukong/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'wukong'
gem.homepage = 'https://github.com/infochimps-labs/wukong'
gem.licenses = ["Apache 2.0"]
gem.email = '[email protected]'
gem.authors = ['Infochimps', 'Philip (flip) Kromer', 'Travis Dempsey']
gem.version = Wukong::VERSION
gem.summary = 'Hadoop Streaming for Ruby. Wukong makes Hadoop so easy a chimpanzee can use it, yet handles terabyte-scale computation with ease.'
gem.description = <<-EOF
Treat your dataset like a:
* stream of lines when it's efficient to process by lines
* stream of field arrays when it's efficient to deal directly with fields
* stream of lightweight objects when it's efficient to deal with objects
Wukong is friends with Hadoop the elephant, Pig the query language, and the cat on your command line.
EOF
gem.files = `git ls-files`.split("\n").reject { |path| path =~ /^(data|docpages|notes|old)/ }
gem.executables = ['wu-local', 'wu-source', 'wu']
gem.test_files = gem.files.grep(/^spec/)
gem.require_paths = ['lib']
gem.add_dependency('configliere', '~> 0.4.18')
gem.add_dependency('gorillib', '~> 0.5.0')
gem.add_dependency('multi_json', '1.9.0')
gem.add_dependency('forgery', '0.5.0')
gem.add_dependency('uuidtools', '2.1.4')
gem.add_dependency('eventmachine', '1.0.3')
gem.add_dependency('log4r', '1.1.10')
end