discorb 0.16.0 → 0.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitattributes +1 -0
- data/.github/workflows/build_main.yml +2 -2
- data/.github/workflows/build_version.yml +1 -1
- data/.github/workflows/codeql-analysis.yml +1 -1
- data/.github/workflows/lint-push.yml +3 -5
- data/.github/workflows/lint.yml +1 -1
- data/.github/workflows/spec.yml +30 -0
- data/.lefthook/commit-msg/validator.rb +5 -0
- data/.rspec +2 -0
- data/.rspec_parallel +2 -0
- data/.rubocop.yml +43 -6
- data/Changelog.md +14 -1
- data/Gemfile +14 -8
- data/Rakefile +41 -26
- data/bin/console +3 -3
- data/docs/Examples.md +1 -1
- data/docs/application_command.md +138 -46
- data/docs/cli/irb.md +2 -2
- data/docs/cli/new.md +14 -9
- data/docs/cli/run.md +7 -11
- data/docs/cli.md +17 -10
- data/docs/events.md +209 -211
- data/docs/extension.md +1 -2
- data/docs/faq.md +0 -1
- data/docs/tutorial.md +12 -12
- data/docs/voice_events.md +106 -106
- data/examples/commands/message.rb +63 -0
- data/examples/commands/permission.rb +18 -0
- data/examples/commands/slash.rb +44 -0
- data/examples/commands/user.rb +51 -0
- data/examples/components/authorization_button.rb +2 -2
- data/examples/components/select_menu.rb +2 -2
- data/examples/extension/main.rb +1 -1
- data/examples/extension/message_expander.rb +5 -2
- data/examples/simple/eval.rb +2 -2
- data/examples/simple/ping_pong.rb +1 -1
- data/examples/simple/rolepanel.rb +1 -1
- data/examples/simple/shard.rb +1 -1
- data/examples/simple/wait_for_message.rb +1 -1
- data/exe/discorb +31 -16
- data/lefthook.yml +45 -0
- data/lib/discorb/allowed_mentions.rb +1 -0
- data/lib/discorb/app_command/command.rb +127 -65
- data/lib/discorb/app_command/common.rb +25 -0
- data/lib/discorb/app_command/handler.rb +115 -33
- data/lib/discorb/app_command.rb +2 -1
- data/lib/discorb/application.rb +1 -0
- data/lib/discorb/asset.rb +1 -2
- data/lib/discorb/attachment.rb +1 -1
- data/lib/discorb/audit_logs.rb +11 -8
- data/lib/discorb/channel/base.rb +108 -0
- data/lib/discorb/channel/category.rb +32 -0
- data/lib/discorb/channel/container.rb +44 -0
- data/lib/discorb/channel/dm.rb +28 -0
- data/lib/discorb/channel/guild.rb +245 -0
- data/lib/discorb/channel/stage.rb +140 -0
- data/lib/discorb/channel/text.rb +345 -0
- data/lib/discorb/channel/thread.rb +321 -0
- data/lib/discorb/channel/voice.rb +79 -0
- data/lib/discorb/channel.rb +2 -1165
- data/lib/discorb/client.rb +38 -26
- data/lib/discorb/common.rb +2 -1
- data/lib/discorb/components/button.rb +2 -1
- data/lib/discorb/components/select_menu.rb +4 -2
- data/lib/discorb/components/text_input.rb +12 -2
- data/lib/discorb/components.rb +1 -1
- data/lib/discorb/embed.rb +22 -7
- data/lib/discorb/emoji.rb +30 -3
- data/lib/discorb/emoji_table.rb +4969 -3
- data/lib/discorb/event.rb +29 -4
- data/lib/discorb/exe/about.rb +1 -0
- data/lib/discorb/exe/irb.rb +2 -4
- data/lib/discorb/exe/new.rb +90 -23
- data/lib/discorb/exe/run.rb +8 -22
- data/lib/discorb/exe/setup.rb +25 -12
- data/lib/discorb/exe/show.rb +4 -3
- data/lib/discorb/extend.rb +1 -0
- data/lib/discorb/extension.rb +6 -3
- data/lib/discorb/flag.rb +11 -0
- data/lib/discorb/gateway.rb +67 -19
- data/lib/discorb/guild.rb +188 -56
- data/lib/discorb/guild_template.rb +10 -4
- data/lib/discorb/http.rb +16 -9
- data/lib/discorb/integration.rb +4 -1
- data/lib/discorb/intents.rb +1 -1
- data/lib/discorb/interaction/autocomplete.rb +28 -16
- data/lib/discorb/interaction/command.rb +36 -12
- data/lib/discorb/interaction/components.rb +5 -2
- data/lib/discorb/interaction/modal.rb +0 -1
- data/lib/discorb/interaction/response.rb +61 -22
- data/lib/discorb/interaction/root.rb +13 -13
- data/lib/discorb/interaction.rb +1 -0
- data/lib/discorb/invite.rb +5 -2
- data/lib/discorb/member.rb +25 -5
- data/lib/discorb/message.rb +47 -14
- data/lib/discorb/message_meta.rb +1 -0
- data/lib/discorb/modules.rb +56 -14
- data/lib/discorb/presence.rb +2 -2
- data/lib/discorb/rate_limit.rb +7 -2
- data/lib/discorb/reaction.rb +4 -4
- data/lib/discorb/role.rb +19 -4
- data/lib/discorb/shard.rb +1 -1
- data/lib/discorb/sticker.rb +8 -7
- data/lib/discorb/user.rb +2 -1
- data/lib/discorb/utils/colored_puts.rb +1 -0
- data/lib/discorb/voice_state.rb +10 -6
- data/lib/discorb/webhook.rb +36 -24
- data/lib/discorb.rb +5 -3
- data/po/yard.pot +9 -9
- data/sig/discorb.rbs +7232 -7235
- metadata +21 -5
- data/examples/commands/bookmarker.rb +0 -42
- data/examples/commands/hello.rb +0 -10
- data/examples/commands/inspect.rb +0 -25
data/po/yard.pot
CHANGED
@@ -4519,7 +4519,7 @@ msgid "Command block."
|
|
4519
4519
|
msgstr ""
|
4520
4520
|
|
4521
4521
|
# @return [Discorb::ApplicationCommand::Command::GroupCommand]
|
4522
|
-
# @return [Discorb::ApplicationCommand::Command::
|
4522
|
+
# @return [Discorb::ApplicationCommand::Command::ChatInputCommand]
|
4523
4523
|
# @return [Discorb::ApplicationCommand::Command::SubcommandGroup]
|
4524
4524
|
# @return [Discorb::ApplicationCommand::Command]
|
4525
4525
|
#: ../lib/discorb/app_command.rb:40
|
@@ -4722,7 +4722,7 @@ msgstr ""
|
|
4722
4722
|
msgid "a new instance of Command"
|
4723
4723
|
msgstr ""
|
4724
4724
|
|
4725
|
-
# Discorb::ApplicationCommand::Command::
|
4725
|
+
# Discorb::ApplicationCommand::Command::ChatInputCommand
|
4726
4726
|
#: ../lib/discorb/app_command.rb:194
|
4727
4727
|
msgid "Represents the slash command."
|
4728
4728
|
msgstr ""
|
@@ -4738,12 +4738,12 @@ msgstr ""
|
|
4738
4738
|
msgid "The options of the command."
|
4739
4739
|
msgstr ""
|
4740
4740
|
|
4741
|
-
# @return [
|
4741
|
+
# @return [ChatInputCommand]
|
4742
4742
|
#: ../lib/discorb/app_command.rb:203
|
4743
|
-
msgid "a new instance of
|
4743
|
+
msgid "a new instance of ChatInputCommand"
|
4744
4744
|
msgstr ""
|
4745
4745
|
|
4746
|
-
# Discorb::ApplicationCommand::Command::
|
4746
|
+
# Discorb::ApplicationCommand::Command::ChatInputCommand#to_s
|
4747
4747
|
#: ../lib/discorb/app_command.rb:213
|
4748
4748
|
msgid "Returns the commands name."
|
4749
4749
|
msgstr ""
|
@@ -4753,8 +4753,8 @@ msgstr ""
|
|
4753
4753
|
msgid "Represents the command with subcommands."
|
4754
4754
|
msgstr ""
|
4755
4755
|
|
4756
|
-
# @return [Array<Discorb::ApplicationCommand::Command::
|
4757
|
-
# @return [Array<Discorb::ApplicationCommand::Command::
|
4756
|
+
# @return [Array<Discorb::ApplicationCommand::Command::ChatInputCommand, Discorb::ApplicationCommand::Command::SubcommandGroup>]
|
4757
|
+
# @return [Array<Discorb::ApplicationCommand::Command::ChatInputCommand>]
|
4758
4758
|
#: ../lib/discorb/app_command.rb:275
|
4759
4759
|
#: ../lib/discorb/app_command.rb:372
|
4760
4760
|
msgid "The subcommands of the command."
|
@@ -4772,7 +4772,7 @@ msgstr ""
|
|
4772
4772
|
msgid "Add new subcommand."
|
4773
4773
|
msgstr ""
|
4774
4774
|
|
4775
|
-
# @return [Discorb::ApplicationCommand::Command::
|
4775
|
+
# @return [Discorb::ApplicationCommand::Command::ChatInputCommand]
|
4776
4776
|
#: ../lib/discorb/app_command.rb:294
|
4777
4777
|
#: ../lib/discorb/app_command.rb:391
|
4778
4778
|
msgid "The added subcommand."
|
@@ -12122,7 +12122,7 @@ msgstr ""
|
|
12122
12122
|
msgid "Represents a command interaction."
|
12123
12123
|
msgstr ""
|
12124
12124
|
|
12125
|
-
# Discorb::CommandInteraction::
|
12125
|
+
# Discorb::CommandInteraction::ChatInputCommand
|
12126
12126
|
#: ../lib/discorb/interaction/command.rb:11
|
12127
12127
|
msgid "Represents a slash command interaction."
|
12128
12128
|
msgstr ""
|