mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
a6582bea9b
* Remove any "All Rights Reserved" references InSpec is licensed and released under the Apache 2.0 license. This change removes all reference to legacy code files that still had any Copyright or License lines referring to "All Rights Reserved". Signed-off-by: Adam Leff <adam@leff.co> * fix functional tests Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
23 lines
595 B
Ruby
23 lines
595 B
Ruby
# encoding: utf-8
|
|
# copyright: 2015, Dominik Richter
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
libdir = File.dirname(__FILE__)
|
|
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
|
|
|
|
require 'inspec/version'
|
|
require 'inspec/exceptions'
|
|
require 'inspec/profile'
|
|
require 'inspec/rspec_json_formatter'
|
|
require 'inspec/rule'
|
|
require 'matchers/matchers'
|
|
require 'inspec/runner'
|
|
require 'inspec/shell'
|
|
|
|
# all utils that may be required by plugins
|
|
require 'inspec/base_cli'
|
|
require 'inspec/fetcher'
|
|
require 'inspec/source_reader'
|
|
require 'inspec/resource'
|
|
require 'inspec/plugins'
|