mirror of
https://github.com/inspec/inspec
synced 2024-11-14 00:47:10 +00:00
699d73993c
* CFINSPEC-24:Integrate License Software Entitlment. Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> * CFINSPEC-506 license execution check Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> * Software entitlement call changes and handling of error Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Error handling from chef licensing error to standard error Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Updated Gemfile to pick the chef licensing changes from git url Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> * Trying with https url Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> * Revert "Trying with https url" This reverts commit 33f1f4c0ecacf9ba2826e25e55b41219903ea736. * Adds the license not entitled exit code Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> * Updates the require statement Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> * Fix typo Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> * Set the licensing configure for entitlement id failure Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> * Use ChefLicensing::Error instead of standard error Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> * REFACTOR Move out licensing cong=fig to its own file and make unconditional Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * FIX TESTS - Add reference to licensing config for places where we call runner explicitly. Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * Update inputs_test to use license configuration from utils Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> --------- Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> Co-authored-by: Nikita Mathur <nikita.mathur@chef.io> Co-authored-by: Clinton Wolfe <clintoncwolfe@gmail.com>
34 lines
No EOL
920 B
Ruby
34 lines
No EOL
920 B
Ruby
# copyright: 2015, Dominik Richter
|
|
|
|
libdir = File.dirname(__FILE__)
|
|
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
|
|
|
|
require "inspec/version"
|
|
require "inspec/utils/licensing_config"
|
|
require "inspec/exceptions"
|
|
require "inspec/utils/deprecation"
|
|
require "inspec/profile"
|
|
require "inspec/rule"
|
|
require "matchers/matchers"
|
|
require "inspec/runner"
|
|
require "inspec/shell"
|
|
require "inspec/formatters"
|
|
require "inspec/reporters"
|
|
require "inspec/input_registry"
|
|
require "inspec/rspec_extensions"
|
|
require "inspec/globals"
|
|
require "inspec/impact"
|
|
require "inspec/utils/telemetry"
|
|
require "inspec/utils/telemetry/global_methods"
|
|
|
|
require "inspec/plugin/v2"
|
|
require "inspec/plugin/v1"
|
|
|
|
# all utils that may be required by legacy plugins
|
|
require "inspec/base_cli"
|
|
require "inspec/fetcher"
|
|
require "inspec/source_reader"
|
|
require "inspec/resource"
|
|
|
|
require "inspec/dependency_loader"
|
|
require "inspec/dependency_installer" |