class Emeril::Publisher::SharePlugin

A custom cookbook site share knife plugin that intercepts Kernel#exit calls and converts them to an exception raise.

Public Instance Methods

exit(code) click to toggle source
# File lib/emeril/publisher.rb, line 126
def exit(code)
  raise "Knife Plugin exited with error code: #{code}"
end