summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-11-15 11:51:48 -0800
committerTim Smith <tsmith@chef.io>2018-11-15 11:51:48 -0800
commit8e7384b0cebbe145b4833ad4082f9499fc5d9050 (patch)
tree2ac797679924e5026c9c78259081dfb9a49e7f1f
parente2bd3b729432ad75d8fb13d7fda96e05f862b406 (diff)
downloadchef-zero-8e7384b0cebbe145b4833ad4082f9499fc5d9050.tar.gz
Don't ship the readme in the gem
Update the homepage instead to get the users to our git repo Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--chef-zero.gemspec4
1 files changed, 2 insertions, 2 deletions
diff --git a/chef-zero.gemspec b/chef-zero.gemspec
index e05c6f6..bf9eefc 100644
--- a/chef-zero.gemspec
+++ b/chef-zero.gemspec
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.description = s.summary
s.author = "John Keiser"
s.email = "jkeiser@chef.io"
- s.homepage = "http://www.chef.io"
+ s.homepage = "https://github.com/chef/chef-zero"
s.license = "Apache-2.0"
s.required_ruby_version = ">= 2.4.0"
@@ -25,6 +25,6 @@ Gem::Specification.new do |s|
s.bindir = "bin"
s.executables = ["chef-zero"]
s.require_path = "lib"
- s.files = %w{LICENSE README.md Gemfile Rakefile} + Dir.glob("*.gemspec") +
+ s.files = %w{LICENSE Gemfile Rakefile} + Dir.glob("*.gemspec") +
Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
end