mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Include source and documdnts files only in the gem file. (#1391)
This commit is contained in:
parent
344e9626f9
commit
e60bd543f2
1 changed files with 2 additions and 1 deletions
|
@ -13,7 +13,8 @@ Gem::Specification.new do |s|
|
|||
s.email = ["evan@phx.io"]
|
||||
s.executables = ["puma", "pumactl"]
|
||||
s.extensions = ["ext/puma_http11/extconf.rb"]
|
||||
s.files = `git ls-files`.split($/)
|
||||
s.files = `git ls-files -- bin docs ext lib tools`.split("\n") +
|
||||
%w[History.md LICENSE README.md]
|
||||
s.homepage = "http://puma.io"
|
||||
s.license = "BSD-3-Clause"
|
||||
s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
|
||||
|
|
Loading…
Reference in a new issue