inspec/lib/inspec/dist.rb
Ryan Davis a5309ea392 blindly applied chefstyle -a
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-06-11 18:52:03 -07:00

20 lines
455 B
Ruby

# frozen_string_literal: true
module Inspec
module Dist
# When referencing a product directly, like InSpec
PRODUCT_NAME = "Chef InSpec"
# The inspec executable
EXEC_NAME = "inspec"
# The name of the server product
SERVER_PRODUCT_NAME = "Chef Server"
# name of the automate product
AUTOMATE_PRODUCT_NAME = "Chef Automate"
# name of the compliance product
COMPLIANCE_PRODUCT_NAME = "Chef Compliance"
end
end