Sha256: 2b38b83de6cf6ff4000b078d052ac5803005303928724ccb0ff85f1fffc17874

Contents?: true

Size: 305 Bytes

Versions: 8

Compression:

Stored size: 305 Bytes

Contents

#!/usr/bin/env ruby
require "runbook"

runbook = Runbook.book "<%= name.titleize %>" do
  description <<-DESC
This is a runbook that...
  DESC

  section "SECTION" do
    step "STEP" do
      # Add statements here
    end
  end
end

if __FILE__ == $0
  Runbook::Runner.new(runbook).run
else
  runbook
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
careacademy-runbook-1.2.0 lib/runbook/generators/runbook/templates/runbook.tt
runbook-1.1.0 lib/runbook/generators/runbook/templates/runbook.tt
runbook-1.0.0 lib/runbook/generators/runbook/templates/runbook.tt
runbook-0.16.1 lib/runbook/generators/runbook/templates/runbook.tt
runbook-0.16.0 lib/runbook/generators/runbook/templates/runbook.tt
runbook-0.15.0 lib/runbook/generators/runbook/templates/runbook.tt
runbook-0.14.0 lib/runbook/generators/runbook/templates/runbook.tt
runbook-0.13.0 lib/runbook/generators/runbook/templates/runbook.tt