257
258
259
260
261
262
263
264
265
266
267
268
269
270
|
# File 'lib/runbook/generators/project/project.rb', line 257
def runbook_project_overview
msg = [
"",
"Your runbook project was successfully created.",
"Remember to run `./bin/setup` in your project to install dependencies.",
"Add runbooks to the `runbooks` directory.",
"Add shared code to `#{@shared_lib_dir}`.",
"Execute runbooks using `bundle exec runbook exec <RUNBOOK_PATH>` from your project root.",
"See the README.md for more details.",
"\n",
]
say(msg.join("\n"))
end
|