summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-12-01 14:32:31 -0800
committerTim Smith <tsmith84@gmail.com>2020-12-01 14:32:31 -0800
commit7eea5811cf26074b3ec24760e14ea5ac43bb6217 (patch)
treefdd52283b46722d44c0c8147cdcaf649772a77e9 /Gemfile
parent7eff36d38a52841911a9a64432cae40dd7b43ddb (diff)
downloadchef-7eea5811cf26074b3ec24760e14ea5ac43bb6217.tar.gz
Pin our InSpec version and use Chefstyle from rubygems for now
We have an inspec / rubocop conflict that's getting worked out right now, but for now we need to make sure a bundle update doesn't downgrade inspec. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Gemfile b/Gemfile
index 3801c16ced..0298aab7df 100644
--- a/Gemfile
+++ b/Gemfile
@@ -27,8 +27,8 @@ gem "chef-telemetry", ">=1.0.8" # 1.0.8 removes the http dep
group(:omnibus_package) do
gem "appbundler"
gem "rb-readline"
- gem "inspec-core", "~> 4.18"
- gem "inspec-core-bin", "~> 4.18" # need to provide the binaries for inspec
+ gem "inspec-core", "~> 4.23"
+ gem "inspec-core-bin", "~> 4.23" # need to provide the binaries for inspec
gem "chef-vault"
end
@@ -58,7 +58,9 @@ end
group(:chefstyle) do
# for testing new chefstyle rules
- gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
+ # disabled until we resolve the conflict in regexp_parser deps between rubocop and inspec
+ # gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
+ gem "chefstyle", "= 1.5.2"
end
instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]