Method: SamplePlugin#help

Defined in:
lib/campfire/sample_plugin.rb

#helpObject

help is actually functionality provided by another plugin, HelpPlugin. Just return an array of [‘command’, ‘description’] tuples



63
64
65
66
# File 'lib/campfire/sample_plugin.rb', line 63

def help
  [['some command', 'description of some command'],
   ['some other command', 'description of some other command']]
end