diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-10-20 13:07:56 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-10-20 13:07:56 -0700 |
commit | c65fb9334f3d2b8a9b13cdef069797c298513ade (patch) | |
tree | a0f2e8cd297404351c0d5230e67887985b4b026b /chef-utils | |
parent | ec3933f4ea42ab457999103b7b801917cf4de54a (diff) | |
download | chef-c65fb9334f3d2b8a9b13cdef069797c298513ade.tar.gz |
Minor gem cleanup for chef-bin/chef-utils/chef-config
Add metadata to chef-config
Update the descriptions for Chef Infra
Move dev deps to the gemfiles so we're consistent in all the gems in this repo
Just dep on rspec since rspec itself is mocks/expectations/core
Add rake dep to chef-bin
Nuke the unused .rspec file in chef-bin
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'chef-utils')
-rw-r--r-- | chef-utils/Gemfile | 2 | ||||
-rw-r--r-- | chef-utils/chef-utils.gemspec | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/chef-utils/Gemfile b/chef-utils/Gemfile index 65cb76c2b5..87fa3df1f2 100644 --- a/chef-utils/Gemfile +++ b/chef-utils/Gemfile @@ -6,4 +6,4 @@ group(:development, :test) do gem "fauxhai-ng" gem "rake" gem "rspec" -end +end
\ No newline at end of file diff --git a/chef-utils/chef-utils.gemspec b/chef-utils/chef-utils.gemspec index b64cc4dc18..db37b01922 100644 --- a/chef-utils/chef-utils.gemspec +++ b/chef-utils/chef-utils.gemspec @@ -8,7 +8,7 @@ Gem::Specification.new do |spec| spec.authors = ["Chef Software, Inc"] spec.email = ["oss@chef.io"] - spec.summary = %q{Basic utility functions for Core Chef development} + spec.summary = %q{Basic utility functions for Core Chef Infra development} spec.homepage = "https://github.com/chef/chef/tree/master/chef-utils" spec.license = "Apache-2.0" @@ -42,7 +42,4 @@ Gem::Specification.new do |spec| spec.files = %w{Rakefile LICENSE} + Dir.glob("*.gemspec") + Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } - - spec.bindir = "bin" - spec.executables = [] end |