aboutsummaryrefslogtreecommitdiffstats
path: root/plum.gemspec
blob: 7a45a213c060fdb906a9b82ac41bde5d2aa1e671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |spec|
  spec.name          = "plum"
  spec.version       = ENV["VERSION"]
  spec.authors       = ["Kazuki Yamaguchi"]
  spec.email         = ["k@rhe.jp"]

  spec.summary       = "An HTTP/2 Library for Ruby"
  spec.description   = spec.summary
  spec.homepage      = "https://github.com/rhenium/plum"
  spec.license       = "MIT"

  spec.files         = Dir["bin/plum", "lib/**/*.rb", "*.md", "LICENSE"]
  spec.executables   = spec.files.grep(%r{^bin/[^.]}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "openssl", "~> 2.0"
  spec.add_development_dependency "test-unit", "~> 3.0"
  spec.add_development_dependency "http_parser.rb"
  spec.add_development_dependency "rack"
end