-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstretch.gemspec
27 lines (23 loc) · 984 Bytes
/
stretch.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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "stretch"
spec.version = "0.1.3"
spec.authors = ["Will Farrington"]
spec.email = ["[email protected]"]
spec.description = %q{An Elasticsearch client library}
spec.summary = %q{It's not anywhere near complete at this time, but
the code is pretty all right allegedly.
}
spec.homepage = "https://github.com/wfarr/stretch"
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 "faraday", "~> 0.8.0"
spec.add_dependency "multi_json", "~> 1.7.2"
spec.add_development_dependency "bundler", "~> 1.2"
spec.add_development_dependency "minitest", "~> 4.0"
spec.add_development_dependency "pry"
spec.add_development_dependency "rake"
end