diff options
author | Adam Leff <adam@leff.co> | 2017-04-04 15:44:58 -0400 |
---|---|---|
committer | Adam Leff <adam@leff.co> | 2017-04-05 06:45:18 -0400 |
commit | 7ca92ad31c7a4d5fc564bc2af34eff407f514490 (patch) | |
tree | 42b97f8d9f07c8737c7a18b990c1cec450bbbedc /Gemfile | |
parent | ce64bc946883cb95a4cc26891bb64384e8f866c5 (diff) | |
download | chef-7ca92ad31c7a4d5fc564bc2af34eff407f514490.tar.gz |
Add InSpec to chef omnibus buildsadamleff/add-inspec
This change adds InSpec to the Chef Gemfile, making it easier
for our community to use InSpec for testing without requiring
them to `chef_gem` install it prior to use.
This also helps our users who wish to use InSpec but are in an
air-gapped environment. Including our preferred testing library
in our Omnibus builds will make it much easier for those users
to use InSpec.
Signed-off-by: Adam Leff <adam@leff.co>
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -22,6 +22,7 @@ gem "cheffish", "~> 13" # required for rspec tests group(:omnibus_package) do gem "appbundler" gem "rb-readline" + gem "inspec" # nokogiri has no ruby-2.4 version for windows so it cannot go into our Gemfile.lock # gem "nokogiri", ">= 1.7.1" end |