grantr/rubberband

View on GitHub
rubberband.gemspec

Summary

Maintainability
Test Coverage
# -*- 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