mirror of
https://github.com/jimeh/bunnyrun.git
synced 2026-02-18 23:46:39 +00:00
17 lines
334 B
Ruby
17 lines
334 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'bunnyrun'
|
|
|
|
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
|