mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
do not include .gitignore and .travis.yml in gem
This commit is contained in:
parent
1d002390e3
commit
cf6b6f64f4
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ Gem::Specification.new 'sinatra', Sinatra::VERSION do |s|
|
|||
s.authors = ["Blake Mizerany", "Ryan Tomayko", "Simon Rozet", "Konstantin Haase"]
|
||||
s.email = "sinatrarb@googlegroups.com"
|
||||
s.homepage = "http://www.sinatrarb.com/"
|
||||
s.files = `git ls-files`.split("\n")
|
||||
s.files = `git ls-files`.split("\n") - %w[.gitignore .travis.yml]
|
||||
s.test_files = s.files.select { |p| p =~ /^test\/.*_test.rb/ }
|
||||
s.extra_rdoc_files = s.files.select { |p| p =~ /^README/ } << 'LICENSE'
|
||||
s.rdoc_options = %w[--line-numbers --inline-source --title Sinatra --main README.rdoc]
|
||||
|
|
Loading…
Reference in a new issue