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-04 16:51:25 -0800
commite65830db7f22a017d6cb199302a7f2358ea9516f (patch)
treeb5ef0d5aa892f15e826f7589fe83eedd3ba7928f
parent8e3ff7e496ecd1f5890e27f552741b731f72b34c (diff)
downloadohai-e65830db7f22a017d6cb199302a7f2358ea9516f.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 34680611..c3a8d5cc 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