class ChefCLI::Command::GeneratorCommands::Cookbook
def emit_post_create_message
def emit_post_create_message if have_delivery_config? msg("Your cookbook is ready. To setup the pipeline, type `cd #{cookbook_name_or_path}`, then run `delivery init`") else msg("Your cookbook is ready. Type `cd #{cookbook_name_or_path}` to enter it.") msg("\nThere are several commands you can run to get started locally developing and testing your cookbook.") msg("Type `delivery local --help` to see a full list of local testing commands.") msg("\nWhy not start by writing an InSpec test? Tests for the default recipe are stored at:\n") msg("test/integration/default/default_test.rb") msg("\nIf you'd prefer to dive right in, the default recipe can be found at:") msg("\nrecipes/default.rb\n") end end