summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-12-04 16:51:25 -0800
committerTim Smith <tsmith@chef.io>2018-12-05 11:08:25 -0800
commitc378be1301a9f04f86a8a6346f9dcde6ee721ceb (patch)
treedecc438c8a4703d8a73caf6fba7115b6b9b276f0
parenta6603d610037652f15c17ac4c5748685fcf04116 (diff)
downloadohai-c378be1301a9f04f86a8a6346f9dcde6ee721ceb.tar.gz
Don't ship the readme with ohai
There's no need for the readme in our gem artifact. This also sets the github repo as the website so people clicking the link on rubygems hit our repo. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--ohai.gemspec4
1 files changed, 2 insertions, 2 deletions
diff --git a/ohai.gemspec b/ohai.gemspec
index 9be8629b..ee5c1cc6 100644
--- a/ohai.gemspec
+++ b/ohai.gemspec
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.license = "Apache-2.0"
s.author = "Adam Jacob"
s.email = "adam@chef.io"
- s.homepage = "https://docs.chef.io/ohai.html"
+ s.homepage = "https://github.com/chef/ohai/"
s.required_ruby_version = ">= 2.4"
@@ -34,5 +34,5 @@ Gem::Specification.new do |s|
s.executables = %w{ohai}
s.require_path = "lib"
- s.files = %w{LICENSE README.md Gemfile Rakefile} + Dir.glob("*.gemspec") + Dir.glob("{docs,lib,spec}/**/*")
+ s.files = %w{LICENSE Gemfile Rakefile} + Dir.glob("*.gemspec") + Dir.glob("{docs,lib,spec}/**/*")
end