mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
13 lines
271 B
Ruby
13 lines
271 B
Ruby
|
# encoding: utf-8
|
||
|
# author: Adam Leff
|
||
|
|
||
|
libdir = File.dirname(__FILE__)
|
||
|
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
|
||
|
|
||
|
module Habitat
|
||
|
autoload :Log, 'inspec-habitat/log'
|
||
|
autoload :Profile, 'inspec-habitat/profile'
|
||
|
end
|
||
|
|
||
|
require 'inspec-habitat/cli'
|