Class: Discorb::ApplicationCommand::Command::GroupCommand
- Inherits:
-
Discorb::ApplicationCommand::Command
- Object
- DiscordModel
- Discorb::ApplicationCommand::Command
- Discorb::ApplicationCommand::Command::GroupCommand
- Defined in:
- lib/discorb/app_command/command.rb
Overview
Represents the command with subcommands.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#commands -> Array<Discorb::ApplicationCommand::Command>
readonly
The subcommands of the command.
-
#description -> Hash{String => String}
readonly
The description of the command.
Attributes inherited from Discorb::ApplicationCommand::Command
#block, #default_permission, #dm_permission, #guild_ids, #name, #type, #type_raw
Instance Method Summary collapse
-
#group(command_name, description) {|group| ... } ⇒ Discorb::ApplicationCommand::Command::SubcommandGroup
Add new subcommand group.
-
#slash(command_name, description, options = {}, dm_permission: true, default_permission: nil, &block) -> Discorb::ApplicationCommand::Command::ChatInputCommand
Add new subcommand.
-
#to_s -> String
Returns the command name.
Methods inherited from DiscordModel
Instance Attribute Details
#commands -> Array<Discorb::ApplicationCommand::Command> (readonly)
Returns The subcommands of the command.
221 222 223 |
# File 'lib/discorb/app_command/command.rb', line 221 def commands @commands end |
#description -> Hash{String => String} (readonly)
Returns The description of the command.
223 224 225 |
# File 'lib/discorb/app_command/command.rb', line 223 def description @description end |
Instance Method Details
#group(command_name, description) {|group| ... } ⇒ Discorb::ApplicationCommand::Command::SubcommandGroup
Add new subcommand group.
285 286 287 288 289 290 |
# File 'lib/discorb/app_command/command.rb', line 285 def group(command_name, description) command = Discorb::ApplicationCommand::Command::SubcommandGroup.new(command_name, description, self, @client) yield command if block_given? @commands << command command end |
#slash(command_name, description, options = {}, dm_permission: true, default_permission: nil, &block) -> Discorb::ApplicationCommand::Command::ChatInputCommand
Add new subcommand.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 |
# File 'lib/discorb/app_command/command.rb', line 255 def slash(command_name, description, = {}, dm_permission: true, default_permission: nil, &block) command = Discorb::ApplicationCommand::Command::ChatInputCommand.new( command_name, description, , [], block, 1, self, , ) @client.callable_commands << command @commands << command command end |
#to_s -> String
Returns the command name.
297 298 299 |
# File 'lib/discorb/app_command/command.rb', line 297 def to_s @name["default"] end |