Module: Befog::Commands::Mixins::Help

Included in:
Add, Configure, List, Remove, Run, Start, Stop
Defined in:
lib/befog/commands/mixins/help.rb

Class Method Summary collapse

Class Method Details

.included(target) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/befog/commands/mixins/help.rb', line 5

def self.included(target)
  target.module_eval do
    option :help,
      :short => :h,
      :description => "Show this message"
  end
end