Sha256: 6f8b74032eca654bef47ad04309ec226792694fabd2568df3fba217610608725

Contents?: true

Size: 1.83 KB

Versions: 16

Compression:

Stored size: 1.83 KB

Contents

source "https://rubygems.org"

gem "inspec", path: "."

# 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.
gem "inspec-bin", path: "./inspec-bin"

gem "ffi", ">= 1.9.14", "!= 1.13.0", "!= 1.14.2"

# inspec tests depend text output that changed in the 3.10 release
# but our runtime dep is still 3.9+
gem "rspec", ">= 3.10"

group :omnibus do
  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
end

group :test do
  gem "chefstyle", "~> 2.0.3"
  gem "concurrent-ruby", "~> 1.0"
  gem "html-proofer", platforms: :ruby # do not attempt to run proofer on windows
  gem "json_schemer", ">= 0.2.1", "< 0.2.19"
  gem "m"
  gem "minitest-sprint", "~> 1.0"
  gem "minitest", "~> 5.5"
  gem "mocha", "~> 1.1"
  gem "nokogiri", "~> 1.9"
  gem "pry-byebug"
  gem "pry", "~> 0.10"
  gem "rake", ">= 10"
  gem "ruby-progressbar", "~> 1.8"
  gem "simplecov", "~> 0.21"
  gem "simplecov_json_formatter"
  gem "webmock", "~> 3.0"
end

group :deploy do
  gem "inquirer"
end

# Only include Test Kitchen support if we are on Ruby 2.7 or higher
# as chef-zero support requires Ruby 2.6
# See https://github.com/inspec/inspec/pull/5341
if Gem.ruby_version >= Gem::Version.new("2.7.0")
  group :kitchen do
    gem "berkshelf"
    gem "chef", ">= 16.0" # Required to allow net-ssh > 6
    gem "test-kitchen", ">= 2.8"
    gem "kitchen-inspec", ">= 2.0"
    gem "kitchen-dokken", ">= 2.11"
    gem "git"
  end
end

if Gem.ruby_version < Gem::Version.new("2.7.0")
  gem "activesupport", "6.1.4.4"
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
inspec-core-5.17.4 Gemfile
inspec-5.17.4 Gemfile
inspec-core-5.14.0 Gemfile
inspec-5.14.0 Gemfile
inspec-core-4.56.20 Gemfile
inspec-4.56.20 Gemfile
inspec-core-5.12.2 Gemfile
inspec-5.12.2 Gemfile
inspec-core-5.10.5 Gemfile
inspec-5.10.5 Gemfile
inspec-core-4.56.19 Gemfile
inspec-4.56.19 Gemfile
inspec-core-5.7.9 Gemfile
inspec-5.7.9 Gemfile
inspec-core-4.56.17 Gemfile
inspec-4.56.17 Gemfile