Class Irc::Bot::Auth::Command
In: lib/rbot/botuser.rb
Parent: Object

An Irc::Bot::Auth::Command defines a command by its "path":

  base::command::subcommand::subsubcommand::subsubsubcommand

Methods

Attributes

command  [R] 
path  [R] 

Public Class methods

Creates a new Command from a given string; you can then access the command as a symbol with the :command method and the whole path as :path

  Command.new("core::auth::save").path => [:"*", :"core", :"core::auth", :"core::auth::save"]

  Command.new("core::auth::save").command => :"core::auth::save"

Public Instance methods

A method that checks if a given cmd is in a form that can be reduced into a canonical command path, and if so, returns it

[Validate]