Sha256: 2fd7c57aa33e4f34c7aca7482edd5f7566ddc7a6c982513510ca5e2416233cc3
Contents?: true
Size: 1.1 KB
Versions: 17
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true require_relative "lib/pitchfork/version" Gem::Specification.new do |s| s.name = %q{pitchfork} s.version = Pitchfork::VERSION s.authors = ['Jean Boussier'] s.email = ["jean.boussier@gmail.com"] s.summary = 'Rack HTTP server for fast clients and Unix' s.description = File.read('README.md').split("\n\n")[1] s.extensions = %w(ext/pitchfork_http/extconf.rb) s.files = Dir.chdir(File.expand_path('..', __FILE__)) do %x(git ls-files -z).split("\x0").reject { |f| f.match(%r{^(test|spec|features|bin|\.)/}) } end s.bindir = "exe" s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) } s.homepage = 'https://github.com/Shopify/pitchfork' s.required_ruby_version = ">= 2.5.0" s.add_dependency(%q<raindrops>, '~> 0.7') s.add_dependency(%q<rack>, '>= 2.0') # Note: To avoid ambiguity, we intentionally avoid the SPDX-compatible # 'Ruby' here since Ruby 1.9.3 switched to BSD-2-Clause, but we # inherited our license from Mongrel when Ruby was at 1.8. # We cannot automatically switch licenses when Ruby changes. s.licenses = ['GPL-2.0+', 'Ruby'] end
Version data entries
17 entries across 17 versions & 1 rubygems