class

Dorsum::Twitch::Chat::Command

Inherits Dorsum::Twitch::Chat::Trigger < Reference < Object

Command (eg. !title) with an associated reply or action.

Constructors

Instance methods

<=>(other)
Source
===(other)

Case equality.

The === method is used in a case ... when ... end expression.

For example, this code:

case value
when x
  # something when x
when y
  # something when y
end

Is equivalent to this code:

if x === value
  # something when x
elsif y === value
  # something when y
end

Object simply implements === by invoking ==, but subclasses (notably Regex) can override it to provide meaningful case-equality semantics.

Source
label

Returns a technical label which summarizes the full trigger.

Source
trigger

The name of the command, without the ! prefix.

Source
trigger=(trigger : String)

The name of the command, without the ! prefix.

Source