Sha256: fac0465f20f71bb691fc17472816716fa74eb8568e15f2f9fdfa485f17b75fb1
Contents?: true
Size: 1.64 KB
Versions: 2
Compression:
Stored size: 1.64 KB
Contents
# -- encoding: utf-8 -- $:.unshift File.expand_path("../lib", __FILE__) require_relative "lib/freno/client/version" Gem::Specification.new do |spec| spec.name = "freno-client" spec.version = Freno::Client::VERSION spec.authors = ["Miguel Fernández"] spec.email = ["opensource+freno-client@github.com"] spec.summary = %q{A library for interacting with freno, the throttler service} spec.description = %q{freno-client is a ruby library that interacts with Freno using HTTP. Freno is a throttling service and its source code is available at https://github.com/github/freno} spec.homepage = "https://github.com/github/freno-client" spec.license = "MIT" spec.required_ruby_version = ">= 2.0.0" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host" # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata["allowed_push_host"] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.executables = [] spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.14" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_development_dependency "faraday", "~> 0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
freno-client-0.6.0 | freno-client.gemspec |
freno-client-0.4.0 | freno-client.gemspec |