Sha256: 63c3509fce9d7109ab0747c1ee0d7bf530baf24e1c3cfff04301894ad5398967
Contents?: true
Size: 1.24 KB
Versions: 5
Compression:
Stored size: 1.24 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "antbird/version" Gem::Specification.new do |spec| spec.name = "antbird" spec.version = Antbird::VERSION spec.authors = ["fukayatsu"] spec.email = ["fukayatsu@gmail.com"] spec.summary = %q{Nearly auto-generated Elasticsearch client} spec.description = %q{Antbird is a yet another low level API client for the Elasticsearch HTTP interface.} spec.homepage = "https://github.com/fukayatsu/antbird" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features|script|tmp)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.required_ruby_version = ">= 2.7.0" spec.add_dependency "faraday", ">= 2.0.1" spec.add_development_dependency "faraday-retry" spec.add_development_dependency "faraday-net_http_persistent" spec.add_development_dependency "bundler", "> 1.16", "< 3.0" spec.add_development_dependency "rake", "~> 13.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "octokit" end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
antbird-0.13.0 | antbird.gemspec |
antbird-0.12.0 | antbird.gemspec |
antbird-0.11.0 | antbird.gemspec |
antbird-0.10.0 | antbird.gemspec |
antbird-0.9.0 | antbird.gemspec |