inspec/lib/bundles/inspec-habitat/log.rb
Adam Leff 0342cca62e Adding a Habitat profile artifact creator
Two new commands have been created:

 * inspec habitat profile create /path/to/profile
 * inspec habitat profile upload /path/to/profile

The `create` command creates a Habitat artifact that contains the contents
of the Habitat profile found at the provided path. This will be used later
in some Habitat + InSpec integrations.

The `upload` command does the same create process but then uploads the
resulting artifact to the Habitat Depot.

Signed-off-by: Adam Leff <adam@leff.co>
2017-02-23 18:25:22 -05:00

10 lines
121 B
Ruby

# encoding: utf-8
# author: Adam Leff
require 'mixlib/log'
module Habitat
class Log
extend Mixlib::Log
end
end