Sha256: 0b7ab9ef5e10500df26245b8314c4fc149bbb3395dd2927d12a657ed69837c3b

Contents?: true

Size: 1.58 KB

Versions: 22

Compression:

Stored size: 1.58 KB

Contents

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "inspec/version"

Gem::Specification.new do |spec|
  spec.name          = "inspec"
  spec.version       = Inspec::VERSION
  spec.authors       = ["Chef InSpec Team"]
  spec.email         = ["inspec@chef.io"]
  spec.summary       = "Infrastructure and compliance testing."
  spec.description   = "InSpec provides a framework for creating end-to-end infrastructure tests. You can use it for integration or even compliance testing. Create fully portable test profiles and use them in your workflow to ensure stability and security. Integrate InSpec in your change lifecycle for local testing, CI/CD, and deployment verification."
  spec.homepage      = "https://github.com/inspec/inspec"
  spec.license       = "Apache-2.0"
  spec.require_paths = ["lib"]

  spec.required_ruby_version = ">= 2.5"

  # ONLY the aws/azure/gcp files. The rest will come in from inspec-core
  # the gemspec is necessary for appbundler so don't remove it
  spec.files =
    Dir.glob("{{lib,etc}/**/*,Gemfile,inspec.gemspec}")
      .grep(/aws|azure|gcp|gemspec|Gemfile|inspec.gemspec/)
      .reject { |f| File.directory?(f) }

  spec.add_dependency "inspec-core", "= #{Inspec::VERSION}"

  spec.add_dependency "train", "~> 3.0"

  # Used for Azure profile until integrated into train
  spec.add_dependency "faraday_middleware", ">= 0.12.2", "< 1.1"

  # Train plugins we ship with InSpec
  spec.add_dependency "train-habitat", "~> 0.1"
  spec.add_dependency "train-aws",     "~> 0.1"
  spec.add_dependency "train-winrm",   "~> 0.2"
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
inspec-4.38.9 inspec.gemspec
inspec-4.38.3 inspec.gemspec
inspec-4.37.30 inspec.gemspec
inspec-4.37.25 inspec.gemspec
inspec-4.37.23 inspec.gemspec
inspec-4.37.20 inspec.gemspec
inspec-4.37.17 inspec.gemspec
inspec-4.37.8 inspec.gemspec
inspec-4.37.0 inspec.gemspec
inspec-4.36.4 inspec.gemspec
inspec-4.33.1 inspec.gemspec
inspec-4.32.0 inspec.gemspec
inspec-4.31.1 inspec.gemspec
inspec-4.31.0 inspec.gemspec
inspec-4.29.3 inspec.gemspec
inspec-4.28.0 inspec.gemspec
inspec-4.26.13 inspec.gemspec
inspec-4.26.4 inspec.gemspec
inspec-4.25.1 inspec.gemspec
inspec-4.24.32 inspec.gemspec