class FBomb::Command::Table

Public Instance Methods

help() click to toggle source
# File lib/fbomb/command.rb, line 6
def help
  map = Map.new

  each do |key, command|
    map[key] = command.description
  end

  map
end