discorb 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +57 -0
- data/.github/ISSUE_TEMPLATE/config.yml +8 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +38 -0
- data/Changelog.md +6 -1
- data/Gemfile.lock +1 -1
- data/docs/application_command.md +8 -8
- data/docs/events.md +29 -0
- data/docs/extension.md +1 -1
- data/lib/discorb/{command.rb → app_command.rb} +25 -25
- data/lib/discorb/client.rb +13 -14
- data/lib/discorb/color.rb +59 -29
- data/lib/discorb/common.rb +1 -1
- data/lib/discorb/error.rb +1 -1
- data/lib/discorb/event.rb +5 -5
- data/lib/discorb/extension.rb +9 -9
- data/lib/discorb/intents.rb +2 -2
- data/lib/discorb.rb +1 -1
- data/po/yard.pot +37 -37
- data/sig/discorb.rbs +40 -40
- metadata +6 -3
    
        data/lib/discorb/color.rb
    CHANGED
    
    | @@ -130,35 +130,65 @@ module Discorb | |
| 130 130 | 
             
                #
         | 
| 131 131 | 
             
                # Create a color from a Discord's color.
         | 
| 132 132 | 
             
                # Currently these colors are supported:
         | 
| 133 | 
            -
                # | 
| 134 | 
            -
                # | 
| 135 | 
            -
                # | 
| 136 | 
            -
                # | 
| 137 | 
            -
                # | 
| 138 | 
            -
                # | 
| 139 | 
            -
                # | 
| 140 | 
            -
                # | 
| 141 | 
            -
                # | 
| 142 | 
            -
                # | 
| 143 | 
            -
                # | 
| 144 | 
            -
                # | 
| 145 | 
            -
                # | 
| 146 | 
            -
                # | 
| 147 | 
            -
                # | 
| 148 | 
            -
                # | 
| 149 | 
            -
                # | 
| 150 | 
            -
                # | 
| 151 | 
            -
                # | 
| 152 | 
            -
                # | 
| 153 | 
            -
                # | 
| 154 | 
            -
                # | 
| 155 | 
            -
                # | 
| 156 | 
            -
                # | 
| 157 | 
            -
                # | 
| 158 | 
            -
                # | 
| 159 | 
            -
                # | 
| 160 | 
            -
                # | 
| 161 | 
            -
                # | 
| 133 | 
            +
                # | Color Name | Hexadecimal |
         | 
| 134 | 
            +
                # |------------|------------|
         | 
| 135 | 
            +
                # | `:teal` | `#1abc9c` |
         | 
| 136 | 
            +
                # | `:dark_teal` | `#11806a` |
         | 
| 137 | 
            +
                # | `:green` | `#2ecc71` |
         | 
| 138 | 
            +
                # | `:dark_green` | `#1f8b4c` |
         | 
| 139 | 
            +
                # | `:blue` | `#3498db` |
         | 
| 140 | 
            +
                # | `:dark_blue` | `#206694` |
         | 
| 141 | 
            +
                # | `:purple` | `#9b59b6` |
         | 
| 142 | 
            +
                # | `:dark_purple` | `#71368a` |
         | 
| 143 | 
            +
                # | `:magenta` | `#e91e63` |
         | 
| 144 | 
            +
                # | `:dark_magenta` | `#ad1457` |
         | 
| 145 | 
            +
                # | `:gold` | `#f1c40f` |
         | 
| 146 | 
            +
                # | `:dark_gold` | `#c27c0e` |
         | 
| 147 | 
            +
                # | `:orange` | `#e67e22` |
         | 
| 148 | 
            +
                # | `:dark_orange` | `#a84300` |
         | 
| 149 | 
            +
                # | `:red` | `#e74c3c` |
         | 
| 150 | 
            +
                # | `:dark_red` | `#992d22` |
         | 
| 151 | 
            +
                # | `:lighter_grey` | `#95a5a6` |
         | 
| 152 | 
            +
                # | `:lighter_gray` | `#95a5a6` |
         | 
| 153 | 
            +
                # | `:dark_grey` | `#607d8b` |
         | 
| 154 | 
            +
                # | `:dark_gray` | `#607d8b` |
         | 
| 155 | 
            +
                # | `:light_grey` | `#979c9f` |
         | 
| 156 | 
            +
                # | `:light_gray` | `#979c9f` |
         | 
| 157 | 
            +
                # | `:darker_grey` | `#546e7a` |
         | 
| 158 | 
            +
                # | `:darker_gray` | `#546e7a` |
         | 
| 159 | 
            +
                # | `:og_blurple` | `#7289da` |
         | 
| 160 | 
            +
                # | `:blurple` | `#5865f2` |
         | 
| 161 | 
            +
                # | `:greyple` | `#99aab5` |
         | 
| 162 | 
            +
                # | `:dark_theme` | `#36393f` |
         | 
| 163 | 
            +
                # | `:fuchsia` | `#eb459e` |
         | 
| 164 | 
            +
                # | `:dark_teal` | `#11806a` |
         | 
| 165 | 
            +
                # | `:green` | `#2ecc71` |
         | 
| 166 | 
            +
                # | `:dark_green` | `#1f8b4c` |
         | 
| 167 | 
            +
                # | `:blue` | `#3498db` |
         | 
| 168 | 
            +
                # | `:dark_blue` | `#206694` |
         | 
| 169 | 
            +
                # | `:purple` | `#9b59b6` |
         | 
| 170 | 
            +
                # | `:dark_purple` | `#71368a` |
         | 
| 171 | 
            +
                # | `:magenta` | `#e91e63` |
         | 
| 172 | 
            +
                # | `:dark_magenta` | `#ad1457` |
         | 
| 173 | 
            +
                # | `:gold` | `#f1c40f` |
         | 
| 174 | 
            +
                # | `:dark_gold` | `#c27c0e` |
         | 
| 175 | 
            +
                # | `:orange` | `#e67e22` |
         | 
| 176 | 
            +
                # | `:dark_orange` | `#a84300` |
         | 
| 177 | 
            +
                # | `:red` | `#e74c3c` |
         | 
| 178 | 
            +
                # | `:dark_red` | `#992d22` |
         | 
| 179 | 
            +
                # | `:lighter_grey` | `#95a5a6` |
         | 
| 180 | 
            +
                # | `:lighter_gray` | `#95a5a6` |
         | 
| 181 | 
            +
                # | `:dark_grey` | `#607d8b` |
         | 
| 182 | 
            +
                # | `:dark_gray` | `#607d8b` |
         | 
| 183 | 
            +
                # | `:light_grey` | `#979c9f` |
         | 
| 184 | 
            +
                # | `:light_gray` | `#979c9f` |
         | 
| 185 | 
            +
                # | `:darker_grey` | `#546e7a` |
         | 
| 186 | 
            +
                # | `:darker_gray` | `#546e7a` |
         | 
| 187 | 
            +
                # | `:og_blurple` | `#7289da` |
         | 
| 188 | 
            +
                # | `:blurple` | `#5865f2` |
         | 
| 189 | 
            +
                # | `:greyple` | `#99aab5` |
         | 
| 190 | 
            +
                # | `:dark_theme` | `#36393f` |
         | 
| 191 | 
            +
                # | `:fuchsia` | `#eb459e` |
         | 
| 162 192 | 
             
                #
         | 
| 163 193 | 
             
                # @param [Symbol] color A Discord color name.
         | 
| 164 194 | 
             
                #
         | 
    
        data/lib/discorb/common.rb
    CHANGED
    
    | @@ -4,7 +4,7 @@ module Discorb | |
| 4 4 | 
             
              # @return [String] The API base URL.
         | 
| 5 5 | 
             
              API_BASE_URL = "https://discord.com/api/v9"
         | 
| 6 6 | 
             
              # @return [String] The version of discorb.
         | 
| 7 | 
            -
              VERSION = "0.6. | 
| 7 | 
            +
              VERSION = "0.6.1"
         | 
| 8 8 | 
             
              # @return [String] The user agent for the bot.
         | 
| 9 9 | 
             
              USER_AGENT = "DiscordBot (https://github.com/discorb-lib/discorb #{VERSION}) Ruby/#{RUBY_VERSION}"
         | 
| 10 10 |  | 
    
        data/lib/discorb/error.rb
    CHANGED
    
    | @@ -94,7 +94,7 @@ module Discorb | |
| 94 94 | 
             
                  @client.close!
         | 
| 95 95 | 
             
                  DiscorbError.instance_method(:initialize).bind(self).call(<<~MESSAGE)
         | 
| 96 96 | 
             
                    The client is banned from CloudFlare.
         | 
| 97 | 
            -
                    Hint: Try to  | 
| 97 | 
            +
                    Hint: Try to decrease the number of requests per second, e.g. Use sleep in between requests.
         | 
| 98 98 | 
             
                  MESSAGE
         | 
| 99 99 | 
             
                end
         | 
| 100 100 | 
             
              end
         | 
    
        data/lib/discorb/event.rb
    CHANGED
    
    | @@ -11,17 +11,17 @@ module Discorb | |
| 11 11 | 
             
                attr_reader :block
         | 
| 12 12 | 
             
                # @return [Symbol] the event id.
         | 
| 13 13 | 
             
                attr_reader :id
         | 
| 14 | 
            -
                # @return [Hash] the event  | 
| 15 | 
            -
                attr_reader : | 
| 14 | 
            +
                # @return [Hash] the event metadata.
         | 
| 15 | 
            +
                attr_reader :metadata
         | 
| 16 16 | 
             
                # @return [Boolean] whether the event is once or not.
         | 
| 17 17 | 
             
                attr_reader :once
         | 
| 18 18 | 
             
                alias once? once
         | 
| 19 19 |  | 
| 20 | 
            -
                def initialize(block, id,  | 
| 20 | 
            +
                def initialize(block, id, metadata)
         | 
| 21 21 | 
             
                  @block = block
         | 
| 22 22 | 
             
                  @id = id
         | 
| 23 | 
            -
                  @once =  | 
| 24 | 
            -
                  @ | 
| 23 | 
            +
                  @once = metadata.fetch(:once, false)
         | 
| 24 | 
            +
                  @metadata = metadata
         | 
| 25 25 | 
             
                  @rescue = nil
         | 
| 26 26 | 
             
                end
         | 
| 27 27 |  | 
    
        data/lib/discorb/extension.rb
    CHANGED
    
    | @@ -8,7 +8,7 @@ module Discorb | |
| 8 8 | 
             
              # @abstract
         | 
| 9 9 | 
             
              #
         | 
| 10 10 | 
             
              module Extension
         | 
| 11 | 
            -
                include Discorb:: | 
| 11 | 
            +
                include Discorb::ApplicationCommand::Handler
         | 
| 12 12 | 
             
                undef setup_commands
         | 
| 13 13 |  | 
| 14 14 | 
             
                @events = {}
         | 
| @@ -19,18 +19,18 @@ module Discorb | |
| 19 19 | 
             
                #
         | 
| 20 20 | 
             
                # @param [Symbol] event_name The name of the event.
         | 
| 21 21 | 
             
                # @param [Symbol] id The id of the event. Used to delete the event.
         | 
| 22 | 
            -
                # @param [Hash]  | 
| 22 | 
            +
                # @param [Hash] metadata Other metadata.
         | 
| 23 23 | 
             
                # @param [Proc] block The block to execute when the event is triggered.
         | 
| 24 24 | 
             
                #
         | 
| 25 25 | 
             
                # @return [Discorb::Event] The event.
         | 
| 26 26 | 
             
                #
         | 
| 27 | 
            -
                def event(event_name, id: nil, ** | 
| 27 | 
            +
                def event(event_name, id: nil, **metadata, &block)
         | 
| 28 28 | 
             
                  raise ArgumentError, "Event name must be a symbol" unless event_name.is_a?(Symbol)
         | 
| 29 29 | 
             
                  raise ArgumentError, "block must be a Proc" unless block.is_a?(Proc)
         | 
| 30 30 |  | 
| 31 31 | 
             
                  @events[event_name] ||= []
         | 
| 32 | 
            -
                   | 
| 33 | 
            -
                  @events[event_name] << Discorb::Event.new(block, id,  | 
| 32 | 
            +
                  metadata[:extension] = self.name
         | 
| 33 | 
            +
                  @events[event_name] << Discorb::Event.new(block, id, metadata)
         | 
| 34 34 | 
             
                end
         | 
| 35 35 |  | 
| 36 36 | 
             
                #
         | 
| @@ -38,18 +38,18 @@ module Discorb | |
| 38 38 | 
             
                #
         | 
| 39 39 | 
             
                # @param [Symbol] event_name The name of the event.
         | 
| 40 40 | 
             
                # @param [Symbol] id The id of the event. Used to delete the event.
         | 
| 41 | 
            -
                # @param [Hash]  | 
| 41 | 
            +
                # @param [Hash] metadata Other metadata.
         | 
| 42 42 | 
             
                # @param [Proc] block The block to execute when the event is triggered.
         | 
| 43 43 | 
             
                #
         | 
| 44 44 | 
             
                # @return [Discorb::Event] The event.
         | 
| 45 45 | 
             
                #
         | 
| 46 | 
            -
                def once_event(event_name, id: nil, ** | 
| 47 | 
            -
                  event(event_name, id: id, once: true, ** | 
| 46 | 
            +
                def once_event(event_name, id: nil, **metadata, &block)
         | 
| 47 | 
            +
                  event(event_name, id: id, once: true, **metadata, &block)
         | 
| 48 48 | 
             
                end
         | 
| 49 49 |  | 
| 50 50 | 
             
                # @return [Hash{Symbol => Array<Discorb::Event>}] The events of the extension.
         | 
| 51 51 | 
             
                attr_reader :events
         | 
| 52 | 
            -
                # @return [Array<Discorb:: | 
| 52 | 
            +
                # @return [Array<Discorb::ApplicationCommand::Command>] The commands of the extension.
         | 
| 53 53 | 
             
                attr_reader :commands
         | 
| 54 54 | 
             
                # @private
         | 
| 55 55 | 
             
                attr_reader :bottom_commands
         | 
    
        data/lib/discorb/intents.rb
    CHANGED
    
    | @@ -26,7 +26,6 @@ module Discorb | |
| 26 26 | 
             
                #
         | 
| 27 27 | 
             
                # @param guilds [Boolean] Whether guild related events are enabled.
         | 
| 28 28 | 
             
                # @param members [Boolean] Whether guild members related events are enabled.
         | 
| 29 | 
            -
                #   @note You must enable members intent on developers portal.
         | 
| 30 29 | 
             
                # @param bans [Boolean] Whether guild ban related events are enabled.
         | 
| 31 30 | 
             
                # @param emojis [Boolean] Whether guild emojis related events are enabled.
         | 
| 32 31 | 
             
                # @param integrations [Boolean] Whether guild integration related events are enabled.
         | 
| @@ -34,13 +33,14 @@ module Discorb | |
| 34 33 | 
             
                # @param invites [Boolean] Whether guild invite related events are enabled.
         | 
| 35 34 | 
             
                # @param voice_states [Boolean] Whether guild voice state related events are enabled.
         | 
| 36 35 | 
             
                # @param presences [Boolean] Whether guild presences related events are enabled.
         | 
| 37 | 
            -
                #   @note You must enable members intent on developers portal.
         | 
| 38 36 | 
             
                # @param messages [Boolean] Whether guild messages related events are enabled.
         | 
| 39 37 | 
             
                # @param reactions [Boolean] Whether guild reaction related events are enabled.
         | 
| 40 38 | 
             
                # @param dm_messages [Boolean] Whether dm messages related events are enabled.
         | 
| 41 39 | 
             
                # @param dm_reactions [Boolean] Whether dm reactions related events are enabled.
         | 
| 42 40 | 
             
                # @param dm_typing [Boolean] Whether dm typing related events are enabled.
         | 
| 43 41 | 
             
                #
         | 
| 42 | 
            +
                # @note You must enable privileged intents to use `members` and/or `presences` intents.
         | 
| 43 | 
            +
                #
         | 
| 44 44 | 
             
                def initialize(guilds: true,
         | 
| 45 45 | 
             
                               members: false,
         | 
| 46 46 | 
             
                               bans: true,
         | 
    
        data/lib/discorb.rb
    CHANGED
    
    | @@ -44,7 +44,7 @@ require_order = %w[common flag dictionary error rate_limit http intents emoji_ta | |
| 44 44 | 
             
                            %w[application audit_logs color components event] +
         | 
| 45 45 | 
             
                            %w[file guild_template image integration interaction invite log permission] +
         | 
| 46 46 | 
             
                            %w[presence reaction role sticker utils voice_state webhook] +
         | 
| 47 | 
            -
                            %w[gateway_requests gateway  | 
| 47 | 
            +
                            %w[gateway_requests gateway app_command] +
         | 
| 48 48 | 
             
                            %w[asset extension client extend]
         | 
| 49 49 | 
             
            require_order.each do |name|
         | 
| 50 50 | 
             
              require_relative "discorb/#{name}.rb"
         | 
    
        data/po/yard.pot
    CHANGED
    
    | @@ -322,7 +322,7 @@ msgid "## How do I register an application command?" | |
| 322 322 | 
             
            msgstr ""
         | 
| 323 323 |  | 
| 324 324 | 
             
            #: ../docs/application_command.md:13
         | 
| 325 | 
            -
            msgid "Use {Discorb:: | 
| 325 | 
            +
            msgid "Use {Discorb::ApplicationCommand::Handler#slash}, {Discorb::ApplicationCommand::Handler#group} for slash commands, {Discorb::ApplicationCommand::Handler#user_command} for user menu commands, and {Discorb::ApplicationCommand::Handler#message_command} for message menu commands."
         | 
| 326 326 | 
             
            msgstr ""
         | 
| 327 327 |  | 
| 328 328 | 
             
            #: ../docs/application_command.md:15
         | 
| @@ -349,7 +349,7 @@ msgid "client.slash(\"hello\", \"Greet for you\") do |interaction|\n" | |
| 349 349 | 
             
            msgstr ""
         | 
| 350 350 |  | 
| 351 351 | 
             
            #: ../docs/application_command.md:36
         | 
| 352 | 
            -
            msgid "{Discorb:: | 
| 352 | 
            +
            msgid "{Discorb::ApplicationCommand::Handler#slash} takes 5 arguments:"
         | 
| 353 353 | 
             
            msgstr ""
         | 
| 354 354 |  | 
| 355 355 | 
             
            #: ../docs/application_command.md:38
         | 
| @@ -441,7 +441,7 @@ msgid "### Group Slash Commands" | |
| 441 441 | 
             
            msgstr ""
         | 
| 442 442 |  | 
| 443 443 | 
             
            #: ../docs/application_command.md:104
         | 
| 444 | 
            -
            msgid "To register a group of slash commands, use {Discorb:: | 
| 444 | 
            +
            msgid "To register a group of slash commands, use {Discorb::ApplicationCommand::Handler#slash_group}."
         | 
| 445 445 | 
             
            msgstr ""
         | 
| 446 446 |  | 
| 447 447 | 
             
            #: ../docs/application_command.md:106
         | 
| @@ -473,7 +473,7 @@ msgid "group.slash(\"bump_alert\", \"Whether bot should notify DISBOARD bump.\", | |
| 473 473 | 
             
            msgstr ""
         | 
| 474 474 |  | 
| 475 475 | 
             
            #: ../docs/application_command.md:128
         | 
| 476 | 
            -
            msgid "You can make subcommand group by using {Discorb:: | 
| 476 | 
            +
            msgid "You can make subcommand group by using {Discorb::ApplicationCommand::GroupCommand#group}."
         | 
| 477 477 | 
             
            msgstr ""
         | 
| 478 478 |  | 
| 479 479 | 
             
            #: ../docs/application_command.md:130
         | 
| @@ -558,7 +558,7 @@ msgid "```ruby\n" | |
| 558 558 | 
             
            "  interaction.post(\"Hello, #{user.name}!\")\n"
         | 
| 559 559 | 
             
            "end\n"
         | 
| 560 560 | 
             
            "```\n"
         | 
| 561 | 
            -
            "{Discorb:: | 
| 561 | 
            +
            "{Discorb::ApplicationCommand::Handler#user_command} takes 3 arguments:"
         | 
| 562 562 | 
             
            msgstr ""
         | 
| 563 563 |  | 
| 564 564 | 
             
            #: ../docs/application_command.md:216
         | 
| @@ -595,7 +595,7 @@ msgid "```ruby\n" | |
| 595 595 | 
             
            msgstr ""
         | 
| 596 596 |  | 
| 597 597 | 
             
            #: ../docs/application_command.md:238
         | 
| 598 | 
            -
            msgid "{Discorb:: | 
| 598 | 
            +
            msgid "{Discorb::ApplicationCommand::Handler#message_command} takes 3 arguments:"
         | 
| 599 599 | 
             
            msgstr ""
         | 
| 600 600 |  | 
| 601 601 | 
             
            #: ../docs/application_command.md:248
         | 
| @@ -4592,7 +4592,7 @@ msgstr "" | |
| 4592 4592 | 
             
            msgid "The logger."
         | 
| 4593 4593 | 
             
            msgstr ""
         | 
| 4594 4594 |  | 
| 4595 | 
            -
            # @return [Array<Discorb:: | 
| 4595 | 
            +
            # @return [Array<Discorb::ApplicationCommand::Command>]
         | 
| 4596 4596 | 
             
            #: ../lib/discorb/client.rb:45
         | 
| 4597 4597 | 
             
            msgid "The commands that the client is using."
         | 
| 4598 4598 | 
             
            msgstr ""
         | 
| @@ -5262,17 +5262,17 @@ msgstr "" | |
| 5262 5262 | 
             
            msgid "A Discord color name."
         | 
| 5263 5263 | 
             
            msgstr ""
         | 
| 5264 5264 |  | 
| 5265 | 
            -
            # Discorb:: | 
| 5265 | 
            +
            # Discorb::ApplicationCommand
         | 
| 5266 5266 | 
             
            #: ../lib/discorb/command.rb:5
         | 
| 5267 5267 | 
             
            msgid "Handles application commands."
         | 
| 5268 5268 | 
             
            msgstr ""
         | 
| 5269 5269 |  | 
| 5270 | 
            -
            # Discorb:: | 
| 5270 | 
            +
            # Discorb::ApplicationCommand::Handler
         | 
| 5271 5271 | 
             
            #: ../lib/discorb/command.rb:9
         | 
| 5272 5272 | 
             
            msgid "Module to handle commands."
         | 
| 5273 5273 | 
             
            msgstr ""
         | 
| 5274 5274 |  | 
| 5275 | 
            -
            # Discorb:: | 
| 5275 | 
            +
            # Discorb::ApplicationCommand::Handler#slash
         | 
| 5276 5276 | 
             
            #: ../lib/discorb/command.rb:13
         | 
| 5277 5277 | 
             
            msgid "Add new top-level command."
         | 
| 5278 5278 | 
             
            msgstr ""
         | 
| @@ -5364,14 +5364,14 @@ msgstr "" | |
| 5364 5364 | 
             
            msgid "tag|param|options"
         | 
| 5365 5365 | 
             
            msgstr ""
         | 
| 5366 5366 |  | 
| 5367 | 
            -
            # Discorb:: | 
| 5367 | 
            +
            # Discorb::ApplicationCommand::Handler#slash_group
         | 
| 5368 5368 | 
             
            #: ../lib/discorb/command.rb:41
         | 
| 5369 5369 | 
             
            msgid "Add new command with group."
         | 
| 5370 5370 | 
             
            msgstr ""
         | 
| 5371 5371 |  | 
| 5372 | 
            -
            # @return [Discorb:: | 
| 5373 | 
            -
            # @return [Discorb:: | 
| 5374 | 
            -
            # @return [Discorb:: | 
| 5372 | 
            +
            # @return [Discorb::ApplicationCommand::Command::GroupCommand]
         | 
| 5373 | 
            +
            # @return [Discorb::ApplicationCommand::Command::SubcommandGroup]
         | 
| 5374 | 
            +
            # @return [Discorb::ApplicationCommand::Command]
         | 
| 5375 5375 | 
             
            #: ../lib/discorb/command.rb:51
         | 
| 5376 5376 | 
             
            #: ../lib/discorb/command.rb:69
         | 
| 5377 5377 | 
             
            #: ../lib/discorb/command.rb:87
         | 
| @@ -5385,7 +5385,7 @@ msgstr "" | |
| 5385 5385 | 
             
            msgid "tag|see|file:docs/slash_command.md"
         | 
| 5386 5386 | 
             
            msgstr ""
         | 
| 5387 5387 |  | 
| 5388 | 
            -
            # Discorb:: | 
| 5388 | 
            +
            # Discorb::ApplicationCommand::Handler#message_command
         | 
| 5389 5389 | 
             
            #: ../lib/discorb/command.rb:58
         | 
| 5390 5390 | 
             
            msgid "Add message context menu command."
         | 
| 5391 5391 | 
             
            msgstr ""
         | 
| @@ -5397,13 +5397,13 @@ msgstr "" | |
| 5397 5397 | 
             
            msgid "Block to execute."
         | 
| 5398 5398 | 
             
            msgstr ""
         | 
| 5399 5399 |  | 
| 5400 | 
            -
            # @yieldparam [Discorb:: | 
| 5400 | 
            +
            # @yieldparam [Discorb::ApplicationCommandInteraction::UserMenuCommand]
         | 
| 5401 5401 | 
             
            #: ../lib/discorb/command.rb:69
         | 
| 5402 5402 | 
             
            #: ../lib/discorb/command.rb:87
         | 
| 5403 5403 | 
             
            msgid "tag|yieldparam|Interaction"
         | 
| 5404 5404 | 
             
            msgstr ""
         | 
| 5405 5405 |  | 
| 5406 | 
            -
            # @yieldparam [Discorb:: | 
| 5406 | 
            +
            # @yieldparam [Discorb::ApplicationCommandInteraction::UserMenuCommand] Interaction
         | 
| 5407 5407 | 
             
            #: ../lib/discorb/command.rb:69
         | 
| 5408 5408 | 
             
            #: ../lib/discorb/command.rb:87
         | 
| 5409 5409 | 
             
            msgid "object."
         | 
| @@ -5421,7 +5421,7 @@ msgstr "" | |
| 5421 5421 | 
             
            msgid "Message object."
         | 
| 5422 5422 | 
             
            msgstr ""
         | 
| 5423 5423 |  | 
| 5424 | 
            -
            # Discorb:: | 
| 5424 | 
            +
            # Discorb::ApplicationCommand::Handler#user_command
         | 
| 5425 5425 | 
             
            #: ../lib/discorb/command.rb:76
         | 
| 5426 5426 | 
             
            msgid "Add user context menu command."
         | 
| 5427 5427 | 
             
            msgstr ""
         | 
| @@ -5431,7 +5431,7 @@ msgstr "" | |
| 5431 5431 | 
             
            msgid "User object."
         | 
| 5432 5432 | 
             
            msgstr ""
         | 
| 5433 5433 |  | 
| 5434 | 
            -
            # Discorb:: | 
| 5434 | 
            +
            # Discorb::ApplicationCommand::Handler#setup_commands
         | 
| 5435 5435 | 
             
            #: ../lib/discorb/command.rb:94
         | 
| 5436 5436 | 
             
            msgid "Setup commands."
         | 
| 5437 5437 | 
             
            msgstr ""
         | 
| @@ -5456,7 +5456,7 @@ msgstr "" | |
| 5456 5456 | 
             
            msgid "tag|see|Client#initialize"
         | 
| 5457 5457 | 
             
            msgstr ""
         | 
| 5458 5458 |  | 
| 5459 | 
            -
            # Discorb:: | 
| 5459 | 
            +
            # Discorb::ApplicationCommand::Command
         | 
| 5460 5460 | 
             
            #: ../lib/discorb/command.rb:119
         | 
| 5461 5461 | 
             
            msgid "Represents a application command."
         | 
| 5462 5462 | 
             
            msgstr ""
         | 
| @@ -5497,7 +5497,7 @@ msgstr "" | |
| 5497 5497 | 
             
            msgid "a new instance of Command"
         | 
| 5498 5498 | 
             
            msgstr ""
         | 
| 5499 5499 |  | 
| 5500 | 
            -
            # Discorb:: | 
| 5500 | 
            +
            # Discorb::ApplicationCommand::Command::SlashCommand
         | 
| 5501 5501 | 
             
            #: ../lib/discorb/command.rb:163
         | 
| 5502 5502 | 
             
            msgid "Represents the slash command."
         | 
| 5503 5503 | 
             
            msgstr ""
         | 
| @@ -5518,18 +5518,18 @@ msgstr "" | |
| 5518 5518 | 
             
            msgid "a new instance of SlashCommand"
         | 
| 5519 5519 | 
             
            msgstr ""
         | 
| 5520 5520 |  | 
| 5521 | 
            -
            # Discorb:: | 
| 5521 | 
            +
            # Discorb::ApplicationCommand::Command::SlashCommand#to_s
         | 
| 5522 5522 | 
             
            #: ../lib/discorb/command.rb:185
         | 
| 5523 5523 | 
             
            msgid "Returns the commands name."
         | 
| 5524 5524 | 
             
            msgstr ""
         | 
| 5525 5525 |  | 
| 5526 | 
            -
            # Discorb:: | 
| 5526 | 
            +
            # Discorb::ApplicationCommand::Command::GroupCommand
         | 
| 5527 5527 | 
             
            #: ../lib/discorb/command.rb:236
         | 
| 5528 5528 | 
             
            msgid "Represents the command with subcommands."
         | 
| 5529 5529 | 
             
            msgstr ""
         | 
| 5530 5530 |  | 
| 5531 | 
            -
            # @return [Array<Discorb:: | 
| 5532 | 
            -
            # @return [Array<Discorb:: | 
| 5531 | 
            +
            # @return [Array<Discorb::ApplicationCommand::Command::SlashCommand, Discorb::ApplicationCommand::Command::SubcommandGroup>]
         | 
| 5532 | 
            +
            # @return [Array<Discorb::ApplicationCommand::Command::SlashCommand>]
         | 
| 5533 5533 | 
             
            #: ../lib/discorb/command.rb:240
         | 
| 5534 5534 | 
             
            #: ../lib/discorb/command.rb:361
         | 
| 5535 5535 | 
             
            msgid "The subcommands of the command."
         | 
| @@ -5540,20 +5540,20 @@ msgstr "" | |
| 5540 5540 | 
             
            msgid "a new instance of GroupCommand"
         | 
| 5541 5541 | 
             
            msgstr ""
         | 
| 5542 5542 |  | 
| 5543 | 
            -
            # Discorb:: | 
| 5544 | 
            -
            # Discorb:: | 
| 5543 | 
            +
            # Discorb::ApplicationCommand::Command::GroupCommand#slash
         | 
| 5544 | 
            +
            # Discorb::ApplicationCommand::Command::SubcommandGroup#slash
         | 
| 5545 5545 | 
             
            #: ../lib/discorb/command.rb:253
         | 
| 5546 5546 | 
             
            #: ../lib/discorb/command.rb:376
         | 
| 5547 5547 | 
             
            msgid "Add new subcommand."
         | 
| 5548 5548 | 
             
            msgstr ""
         | 
| 5549 5549 |  | 
| 5550 | 
            -
            # @return [Discorb:: | 
| 5550 | 
            +
            # @return [Discorb::ApplicationCommand::Command::SlashCommand]
         | 
| 5551 5551 | 
             
            #: ../lib/discorb/command.rb:258
         | 
| 5552 5552 | 
             
            #: ../lib/discorb/command.rb:380
         | 
| 5553 5553 | 
             
            msgid "The added subcommand."
         | 
| 5554 5554 | 
             
            msgstr ""
         | 
| 5555 5555 |  | 
| 5556 | 
            -
            # Discorb:: | 
| 5556 | 
            +
            # Discorb::ApplicationCommand::Command::GroupCommand#group
         | 
| 5557 5557 | 
             
            #: ../lib/discorb/command.rb:301
         | 
| 5558 5558 | 
             
            msgid "Add new subcommand group."
         | 
| 5559 5559 | 
             
            msgstr ""
         | 
| @@ -5568,7 +5568,7 @@ msgstr "" | |
| 5568 5568 | 
             
            msgid "Group description."
         | 
| 5569 5569 | 
             
            msgstr ""
         | 
| 5570 5570 |  | 
| 5571 | 
            -
            # Discorb:: | 
| 5571 | 
            +
            # Discorb::ApplicationCommand::Command::GroupCommand#to_s
         | 
| 5572 5572 | 
             
            #: ../lib/discorb/command.rb:317
         | 
| 5573 5573 | 
             
            msgid "Returns the command name."
         | 
| 5574 5574 | 
             
            msgstr ""
         | 
| @@ -5578,7 +5578,7 @@ msgstr "" | |
| 5578 5578 | 
             
            msgid "The command name."
         | 
| 5579 5579 | 
             
            msgstr ""
         | 
| 5580 5580 |  | 
| 5581 | 
            -
            # Discorb:: | 
| 5581 | 
            +
            # Discorb::ApplicationCommand::Command::SubcommandGroup
         | 
| 5582 5582 | 
             
            #: ../lib/discorb/command.rb:357
         | 
| 5583 5583 | 
             
            msgid "Represents the subcommand group."
         | 
| 5584 5584 | 
             
            msgstr ""
         | 
| @@ -5589,7 +5589,7 @@ msgid "a new instance of SubcommandGroup" | |
| 5589 5589 | 
             
            msgstr ""
         | 
| 5590 5590 |  | 
| 5591 5591 | 
             
            # Discorb::Activity.types
         | 
| 5592 | 
            -
            # Discorb:: | 
| 5592 | 
            +
            # Discorb::ApplicationCommand::Command.types
         | 
| 5593 5593 | 
             
            #: ../lib/discorb/command.rb:390
         | 
| 5594 5594 | 
             
            #: ../lib/discorb/gateway_requests.rb:45
         | 
| 5595 5595 | 
             
            msgid "Returns the value of attribute types."
         | 
| @@ -9873,7 +9873,7 @@ msgstr "" | |
| 9873 9873 | 
             
            msgid "Response with `UPDATE_MESSAGE`(`7`)."
         | 
| 9874 9874 | 
             
            msgstr ""
         | 
| 9875 9875 |  | 
| 9876 | 
            -
            # Discorb:: | 
| 9876 | 
            +
            # Discorb::ApplicationCommandInteraction
         | 
| 9877 9877 | 
             
            #: ../lib/discorb/interaction.rb:245
         | 
| 9878 9878 | 
             
            msgid "Represents a command interaction."
         | 
| 9879 9879 | 
             
            msgstr ""
         | 
| @@ -9883,12 +9883,12 @@ msgstr "" | |
| 9883 9883 | 
             
            msgid "Implement this."
         | 
| 9884 9884 | 
             
            msgstr ""
         | 
| 9885 9885 |  | 
| 9886 | 
            -
            # Discorb:: | 
| 9886 | 
            +
            # Discorb::ApplicationCommandInteraction::SlashCommand
         | 
| 9887 9887 | 
             
            #: ../lib/discorb/interaction.rb:254
         | 
| 9888 9888 | 
             
            msgid "Represents a slash command interaction."
         | 
| 9889 9889 | 
             
            msgstr ""
         | 
| 9890 9890 |  | 
| 9891 | 
            -
            # Discorb:: | 
| 9891 | 
            +
            # Discorb::ApplicationCommandInteraction::UserMenuCommand
         | 
| 9892 9892 | 
             
            #: ../lib/discorb/interaction.rb:310
         | 
| 9893 9893 | 
             
            msgid "Represents a user context menu interaction."
         | 
| 9894 9894 | 
             
            msgstr ""
         | 
| @@ -9898,7 +9898,7 @@ msgstr "" | |
| 9898 9898 | 
             
            msgid "The target user."
         | 
| 9899 9899 | 
             
            msgstr ""
         | 
| 9900 9900 |  | 
| 9901 | 
            -
            # Discorb:: | 
| 9901 | 
            +
            # Discorb::ApplicationCommandInteraction::MessageMenuCommand
         | 
| 9902 9902 | 
             
            #: ../lib/discorb/interaction.rb:325
         | 
| 9903 9903 | 
             
            msgid "Represents a message context menu interaction."
         | 
| 9904 9904 | 
             
            msgstr ""
         | 
| @@ -9908,7 +9908,7 @@ msgstr "" | |
| 9908 9908 | 
             
            msgid "The target message."
         | 
| 9909 9909 | 
             
            msgstr ""
         | 
| 9910 9910 |  | 
| 9911 | 
            -
            # Discorb:: | 
| 9911 | 
            +
            # Discorb::ApplicationCommandInteraction.command_type
         | 
| 9912 9912 | 
             
            #: ../lib/discorb/interaction.rb:348
         | 
| 9913 9913 | 
             
            msgid "Returns the value of attribute command_type."
         | 
| 9914 9914 | 
             
            msgstr ""
         |