Update examples

This commit is contained in:
2017-10-24 01:10:51 +01:00
parent 899ad6bdb6
commit 743efbf647
10 changed files with 36 additions and 16 deletions

View File

@@ -0,0 +1,14 @@
# frozen_string_literal: true
require 'foobar/version'
module Foobar
class Application < BunnyRun::Application
name 'foobar'
usage '<options> [<path>]'
version Foobar::VERSION
option :success_message, 'Message to log after success',
type: :string, default: ENV['MESSAGE']
end
end