2019-06-11 22:24:35 +00:00
|
|
|
source "https://rubygems.org"
|
2019-01-08 22:13:23 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "inspec", path: "."
|
2019-04-29 23:37:55 +00:00
|
|
|
|
|
|
|
# This dependency is NOT used for normal gem deployment
|
|
|
|
# - instead, inspec-bin gemspec-depends on inspec
|
|
|
|
#
|
|
|
|
# However, AppBundler requires a top-level Gemfile.lock with inspec-bin
|
|
|
|
# in it in order to package the executable. Hence the odd backwards dependency.
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "inspec-bin", path: "./inspec-bin"
|
2015-06-19 13:06:13 +00:00
|
|
|
|
2020-06-10 11:11:50 +00:00
|
|
|
gem "ffi", ">= 1.9.14", "!= 1.13.0"
|
2016-07-06 00:41:01 +00:00
|
|
|
|
2019-03-02 01:39:39 +00:00
|
|
|
group :omnibus do
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "rb-readline"
|
|
|
|
gem "appbundler"
|
|
|
|
gem "ed25519" # ed25519 ssh key support done here as its a native gem we can't put in the gemspec
|
|
|
|
gem "bcrypt_pbkdf" # ed25519 ssh key support done here as its a native gem we can't put in the gemspec
|
2019-03-02 01:39:39 +00:00
|
|
|
end
|
|
|
|
|
2015-09-18 20:51:18 +00:00
|
|
|
group :test do
|
2020-08-12 20:12:26 +00:00
|
|
|
gem "chefstyle", "~> 1.2.1"
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "minitest", "~> 5.5"
|
2019-10-03 22:10:28 +00:00
|
|
|
gem "minitest-sprint", "~> 1.0"
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "rake", ">= 10"
|
2020-02-24 18:48:49 +00:00
|
|
|
gem "simplecov", ["~> 0.10", "<=0.18.2"]
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "concurrent-ruby", "~> 1.0"
|
2020-06-10 23:23:52 +00:00
|
|
|
gem "nokogiri", "~> 1.9"
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "mocha", "~> 1.1"
|
|
|
|
gem "ruby-progressbar", "~> 1.8"
|
|
|
|
gem "webmock", "~> 3.0"
|
|
|
|
gem "m"
|
|
|
|
gem "pry", "~> 0.10"
|
|
|
|
gem "pry-byebug"
|
2020-05-26 01:18:01 +00:00
|
|
|
gem "html-proofer", platforms: :ruby # do not attempt to run proofer on windows
|
2015-09-18 20:51:18 +00:00
|
|
|
end
|
2015-09-18 06:06:11 +00:00
|
|
|
|
|
|
|
group :integration do
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "berkshelf"
|
|
|
|
gem "test-kitchen"
|
|
|
|
gem "kitchen-vagrant"
|
2020-02-24 18:19:55 +00:00
|
|
|
gem "chef", "< 15"
|
|
|
|
gem "chef-zero", "< 15"
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "kitchen-inspec"
|
|
|
|
gem "kitchen-ec2"
|
|
|
|
gem "kitchen-dokken"
|
|
|
|
gem "git"
|
2015-09-18 06:06:11 +00:00
|
|
|
end
|
2015-10-30 16:02:18 +00:00
|
|
|
|
|
|
|
# gems for Maintainers.md generation
|
2015-10-30 16:30:44 +00:00
|
|
|
group :maintenance do
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "tomlrb"
|
2015-10-30 16:02:18 +00:00
|
|
|
|
|
|
|
# To sync maintainers with github
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "octokit"
|
|
|
|
gem "netrc"
|
2015-10-30 16:02:18 +00:00
|
|
|
end
|
2016-09-27 18:00:01 +00:00
|
|
|
|
|
|
|
group :deploy do
|
2019-06-11 22:24:35 +00:00
|
|
|
gem "inquirer"
|
2016-09-27 18:00:01 +00:00
|
|
|
end
|
2019-05-15 21:55:24 +00:00
|
|
|
|
|
|
|
# add these additional dependencies into Gemfile.local
|
|
|
|
eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local")
|