lib/license_acceptance/cli_flags/mixlib_cli.rb
begin require "mixlib/cli" unless defined?(Mixlib::CLI) rescue raise "Must have mixlib-cli gem installed to use this mixin" end module LicenseAcceptance module CLIFlags module MixlibCLI def self.included(klass) klass.option :chef_license, long: "--chef-license ACCEPTANCE", description: "Accept the license for this product and any contained products ('accept', 'accept-no-persist', or 'accept-silent')", required: false end end end end