-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathrubberband.gemspec
36 lines (29 loc) · 1.17 KB
/
rubberband.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 -*-
$:.push File.expand_path("../lib", __FILE__)
require "elasticsearch/version"
Gem::Specification.new do |s|
s.name = "rubberband"
s.version = ElasticSearch::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Grant Rodgers"]
s.email = ["grantr@gmail.com"]
s.homepage = "http://github.com/grantr/rubberband"
s.summary = %q{An ElasticSearch client with ThriftClient-like failover handling.}
s.description = %q{An ElasticSearch client with ThriftClient-like failover handling.}
s.rubyforge_project = "rubberband"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.licenses = ["Apache v2"]
s.add_runtime_dependency "faraday", ["~> 0.8.0"]
s.add_runtime_dependency "multi_json"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", ["~> 2.0"]
s.add_development_dependency "simplecov", [">= 0.3.8"]
s.add_development_dependency "mocha", ["~> 0.9.0"]
end