Sha256: a139190e3d3e432eb5b2e19dee965474b5f177f4a33dbf9953aa3995847af20e
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 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('rack', '>= 2.0') s.add_dependency('logger') # 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pitchfork-0.16.0 | pitchfork.gemspec |
pitchfork-0.15.0 | pitchfork.gemspec |