forked from rossf7/elasticrawl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelasticrawl.gemspec
More file actions
34 lines (30 loc) · 1.47 KB
/
elasticrawl.gemspec
File metadata and controls
34 lines (30 loc) · 1.47 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'elasticrawl/version'
Gem::Specification.new do |spec|
spec.name = 'elasticrawl'
spec.version = Elasticrawl::VERSION
spec.authors = ['Ross Fairbanks']
spec.email = ['ross@rossfairbanks.com']
spec.summary = %q{Launch AWS Elastic MapReduce jobs that process Common Crawl data.}
spec.description = %q{Elasticrawl is a tool for launching AWS Elastic MapReduce jobs that process Common Crawl data.}
spec.homepage = 'https://github.com/rossf7/elasticrawl'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'activerecord', '~> 4.2.5'
spec.add_dependency 'activesupport', '~> 4.2.5'
spec.add_dependency 'aws-sdk', '~> 1.66.0'
spec.add_dependency 'elasticity', '~> 6.0.5'
spec.add_dependency 'highline', '~> 1.7.8'
spec.add_dependency 'sqlite3', '~> 1.3.11'
spec.add_dependency 'thor', '~> 0.19.1'
spec.add_development_dependency 'rake', '~> 10.4.2'
spec.add_development_dependency 'bundler', '~> 1.12.5'
spec.add_development_dependency 'rspec', '~> 3.4.0'
spec.add_development_dependency 'database_cleaner', '~> 1.5.1'
spec.add_development_dependency 'shoulda-matchers', '~> 3.0.1'
end