Class: Discorb::ApplicationCommand::Command::GroupCommand

Inherits:
Discorb::ApplicationCommand::Command show all
Defined in:
lib/discorb/app_command/command.rb

Overview

Represents the command with subcommands.

Direct Known Subclasses

SubcommandGroup

Instance Attribute Summary collapse

Attributes inherited from Discorb::ApplicationCommand::Command

#block, #guild_ids, #id_map, #name, #type, #type_raw

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?, #inspect

Instance Attribute Details

#commands -> Array<Discorb::ApplicationCommand::Command::SlashCommand, Discorb::ApplicationCommand::Command::SubcommandGroup> (readonly)

Returns The subcommands of the command.



180
181
182
# File 'lib/discorb/app_command/command.rb', line 180

def commands
  @commands
end

#description -> String (readonly)

Returns The description of the command.

Returns:

  • (String)

    The description of the command.



182
183
184
# File 'lib/discorb/app_command/command.rb', line 182

def description
  @description
end

Instance Method Details

#group(command_name, description) {|group| ... } ⇒ Discorb::ApplicationCommand::Command::SubcommandGroup

Add new subcommand group.

Parameters:

  • command_name (String)

    Group name.

  • description (String)

    Group description.

Yields:

  • Block to yield with the command.

Yield Parameters:

Returns:

See Also:



228
229
230
231
232
233
# File 'lib/discorb/app_command/command.rb', line 228

def group(command_name, description, &block)
  command = Discorb::ApplicationCommand::Command::SubcommandGroup.new(command_name, description, @name, @client)
  command.yield_self(&block) if block_given?
  @commands << command
  command
end

#slash(command_name, description, options = {}, &block) -> Discorb::ApplicationCommand::Command::SlashCommand

Add new subcommand.

Returns:



208
209
210
211
212
213
# File 'lib/discorb/app_command/command.rb', line 208

def slash(command_name, description, options = {}, &block)
  command = Discorb::ApplicationCommand::Command::SlashCommand.new(command_name, description, options, [], block, 1, @name)
  @client.bottom_commands << command
  @commands << command
  command
end

#to_s -> String

Returns the command name.

Returns:

  • (String)

    The command name.



240
241
242
# File 'lib/discorb/app_command/command.rb', line 240

def to_s
  @name
end