From acdae9420162ac2cddd2fce2cf5e41816e7293c7 Mon Sep 17 00:00:00 2001 From: Christoph Hartmann Date: Mon, 29 Feb 2016 19:28:53 +0100 Subject: [PATCH] add missing supermarket loader --- lib/bundles/inspec-supermarket.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/bundles/inspec-supermarket.rb diff --git a/lib/bundles/inspec-supermarket.rb b/lib/bundles/inspec-supermarket.rb new file mode 100644 index 000000000..82529e685 --- /dev/null +++ b/lib/bundles/inspec-supermarket.rb @@ -0,0 +1,14 @@ +# encoding: utf-8 +# author: Christoph Hartmann +# author: Dominik Richter + +libdir = File.dirname(__FILE__) +$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir) + +module Supermarket + autoload :Configuration, 'inspec-supermarket/configuration' + autoload :API, 'inspec-supermarket/api' +end + +require 'inspec-supermarket/cli' +require 'inspec-supermarket/target'