slack-ruby-client 0.11.1 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/FUNDING.yml +1 -0
- data/.github/workflows/danger.yml +19 -0
- data/.github/workflows/integtest.yml +25 -0
- data/.github/workflows/rubocop.yml +13 -0
- data/.github/workflows/test.yml +34 -0
- data/.gitignore +6 -3
- data/.rubocop.yml +36 -2
- data/.rubocop_todo.yml +186 -54
- data/CHANGELOG.md +156 -31
- data/CONTRIBUTING.md +20 -9
- data/Dangerfile +2 -0
- data/Gemfile +27 -6
- data/Gemfile.danger +6 -0
- data/LICENSE.md +1 -1
- data/README.md +199 -52
- data/RELEASING.md +2 -2
- data/Rakefile +2 -1
- data/UPGRADING.md +89 -3
- data/bin/commands/admin_analytics.rb +16 -0
- data/bin/commands/admin_apps.rb +51 -0
- data/bin/commands/admin_apps_approved.rb +17 -0
- data/bin/commands/admin_apps_requests.rb +28 -0
- data/bin/commands/admin_apps_restricted.rb +17 -0
- data/bin/commands/admin_auth_policy.rb +39 -0
- data/bin/commands/admin_barriers.rb +47 -0
- data/bin/commands/admin_conversations.rb +170 -0
- data/bin/commands/admin_conversations_ekm.rb +17 -0
- data/bin/commands/admin_conversations_restrictAccess.rb +37 -0
- data/bin/commands/admin_conversations_whitelist.rb +37 -0
- data/bin/commands/admin_emoji.rb +54 -0
- data/bin/commands/admin_inviteRequests.rb +36 -0
- data/bin/commands/admin_inviteRequests_approved.rb +16 -0
- data/bin/commands/admin_inviteRequests_denied.rb +16 -0
- data/bin/commands/admin_teams.rb +27 -0
- data/bin/commands/admin_teams_admins.rb +16 -0
- data/bin/commands/admin_teams_owners.rb +16 -0
- data/bin/commands/admin_teams_settings.rb +64 -0
- data/bin/commands/admin_usergroups.rb +48 -0
- data/bin/commands/admin_users.rb +98 -0
- data/bin/commands/admin_users_session.rb +78 -0
- data/bin/commands/admin_users_unsupportedVersions.rb +15 -0
- data/bin/commands/api.rb +1 -1
- data/bin/commands/apps.rb +15 -0
- data/bin/commands/apps_connections.rb +13 -0
- data/bin/commands/apps_event_authorizations.rb +16 -0
- data/bin/commands/apps_manifest.rb +52 -0
- data/bin/commands/apps_permissions.rb +1 -0
- data/bin/commands/apps_permissions_resources.rb +15 -0
- data/bin/commands/apps_permissions_scopes.rb +13 -0
- data/bin/commands/apps_permissions_users.rb +26 -0
- data/bin/commands/auth.rb +1 -0
- data/bin/commands/auth_teams.rb +16 -0
- data/bin/commands/bookmarks.rb +52 -0
- data/bin/commands/bots.rb +2 -0
- data/bin/commands/calls.rb +52 -0
- data/bin/commands/calls_participants.rb +25 -0
- data/bin/commands/channels.rb +1 -153
- data/bin/commands/chat.rb +57 -12
- data/bin/commands/chat_scheduledMessages.rb +19 -0
- data/bin/commands/conversations.rb +75 -4
- data/bin/commands/dialog.rb +1 -0
- data/bin/commands/dnd.rb +6 -3
- data/bin/commands/emoji.rb +1 -0
- data/bin/commands/files.rb +14 -19
- data/bin/commands/files_comments.rb +1 -21
- data/bin/commands/files_remote.rb +78 -0
- data/bin/commands/groups.rb +1 -159
- data/bin/commands/im.rb +1 -62
- data/bin/commands/migration.rb +2 -0
- data/bin/commands/mpim.rb +1 -58
- data/bin/commands/oauth.rb +4 -15
- data/bin/commands/oauth_v2.rb +29 -0
- data/bin/commands/openid_connect.rb +27 -0
- data/bin/commands/pins.rb +3 -6
- data/bin/commands/reactions.rb +5 -3
- data/bin/commands/reminders.rb +7 -0
- data/bin/commands/rtm.rb +7 -4
- data/bin/commands/search.rb +8 -3
- data/bin/commands/stars.rb +10 -6
- data/bin/commands/team.rb +6 -0
- data/bin/commands/team_billing.rb +13 -0
- data/bin/commands/team_preferences.rb +13 -0
- data/bin/commands/team_profile.rb +1 -0
- data/bin/commands/tooling_tokens.rb +14 -0
- data/bin/commands/usergroups.rb +7 -1
- data/bin/commands/usergroups_users.rb +3 -0
- data/bin/commands/users.rb +21 -6
- data/bin/commands/users_admin.rb +1 -0
- data/bin/commands/users_prefs.rb +1 -0
- data/bin/commands/users_profile.rb +7 -6
- data/bin/commands/views.rb +48 -0
- data/bin/commands/workflows.rb +38 -0
- data/bin/commands.rb +40 -5
- data/bin/slack +2 -3
- data/examples/hi_real_time_and_web/Gemfile +1 -0
- data/examples/hi_real_time_and_web/hi.rb +7 -3
- data/examples/{hi_real_time_async_eventmachine → hi_real_time_async_async}/Gemfile +2 -1
- data/examples/{hi_real_time_async_celluloid → hi_real_time_async_async}/Procfile +0 -0
- data/examples/{hi_real_time_async_celluloid → hi_real_time_async_async}/hi.rb +12 -7
- data/examples/hi_web/Gemfile +1 -0
- data/examples/hi_web/hi.rb +1 -0
- data/examples/new_ticket/Gemfile +1 -0
- data/examples/new_ticket/new_ticket.rb +1 -0
- data/lib/slack/config.rb +2 -2
- data/lib/slack/events/config.rb +32 -0
- data/lib/slack/events/request.rb +72 -0
- data/lib/slack/logger.rb +6 -5
- data/lib/slack/messages/formatting.rb +1 -1
- data/lib/slack/messages/message.rb +1 -4
- data/lib/slack/real_time/api/message.rb +3 -1
- data/lib/slack/real_time/api/message_id.rb +1 -0
- data/lib/slack/real_time/api/ping.rb +5 -2
- data/lib/slack/real_time/api/typing.rb +3 -1
- data/lib/slack/real_time/client.rb +103 -34
- data/lib/slack/real_time/concurrency/async.rb +138 -0
- data/lib/slack/real_time/concurrency.rb +2 -2
- data/lib/slack/real_time/config.rb +6 -10
- data/lib/slack/real_time/models/base.rb +1 -4
- data/lib/slack/real_time/models/bot.rb +1 -0
- data/lib/slack/real_time/models/channel.rb +1 -0
- data/lib/slack/real_time/models/group.rb +1 -0
- data/lib/slack/real_time/models/im.rb +1 -0
- data/lib/slack/real_time/models/team.rb +1 -0
- data/lib/slack/real_time/models/user.rb +1 -0
- data/lib/slack/real_time/models.rb +1 -0
- data/lib/slack/real_time/socket.rb +45 -17
- data/lib/slack/real_time/stores/base.rb +5 -7
- data/lib/slack/real_time/stores/starter.rb +27 -3
- data/lib/slack/real_time/stores/store.rb +43 -25
- data/lib/slack/real_time/stores.rb +1 -0
- data/lib/slack/version.rb +2 -1
- data/lib/slack/web/api/endpoints/admin_analytics.rb +28 -0
- data/lib/slack/web/api/endpoints/admin_apps.rb +78 -0
- data/lib/slack/web/api/endpoints/admin_apps_approved.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_apps_requests.rb +51 -0
- data/lib/slack/web/api/endpoints/admin_apps_restricted.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_auth_policy.rb +72 -0
- data/lib/slack/web/api/endpoints/admin_barriers.rb +82 -0
- data/lib/slack/web/api/endpoints/admin_conversations.rb +262 -0
- data/lib/slack/web/api/endpoints/admin_conversations_ekm.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_conversations_restrictAccess.rb +61 -0
- data/lib/slack/web/api/endpoints/admin_conversations_whitelist.rb +64 -0
- data/lib/slack/web/api/endpoints/admin_emoji.rb +88 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests.rb +61 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests_approved.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests_denied.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_teams.rb +50 -0
- data/lib/slack/web/api/endpoints/admin_teams_admins.rb +34 -0
- data/lib/slack/web/api/endpoints/admin_teams_owners.rb +34 -0
- data/lib/slack/web/api/endpoints/admin_teams_settings.rb +99 -0
- data/lib/slack/web/api/endpoints/admin_usergroups.rb +77 -0
- data/lib/slack/web/api/endpoints/admin_users.rb +163 -0
- data/lib/slack/web/api/endpoints/admin_users_session.rb +122 -0
- data/lib/slack/web/api/endpoints/admin_users_unsupportedVersions.rb +25 -0
- data/lib/slack/web/api/endpoints/api.rb +2 -3
- data/lib/slack/web/api/endpoints/apps.rb +27 -0
- data/lib/slack/web/api/endpoints/apps_connections.rb +21 -0
- data/lib/slack/web/api/endpoints/apps_event_authorizations.rb +34 -0
- data/lib/slack/web/api/endpoints/apps_manifest.rb +77 -0
- data/lib/slack/web/api/endpoints/apps_permissions.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_resources.rb +31 -0
- data/lib/slack/web/api/endpoints/apps_permissions_scopes.rb +21 -0
- data/lib/slack/web/api/endpoints/apps_permissions_users.rb +50 -0
- data/lib/slack/web/api/endpoints/auth.rb +2 -1
- data/lib/slack/web/api/endpoints/auth_teams.rb +33 -0
- data/lib/slack/web/api/endpoints/bookmarks.rb +86 -0
- data/lib/slack/web/api/endpoints/bots.rb +4 -1
- data/lib/slack/web/api/endpoints/calls.rb +83 -0
- data/lib/slack/web/api/endpoints/calls_participants.rb +42 -0
- data/lib/slack/web/api/endpoints/channels.rb +2 -243
- data/lib/slack/web/api/endpoints/chat.rb +145 -46
- data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +40 -0
- data/lib/slack/web/api/endpoints/conversations.rb +152 -39
- data/lib/slack/web/api/endpoints/dialog.rb +3 -2
- data/lib/slack/web/api/endpoints/dnd.rb +9 -4
- data/lib/slack/web/api/endpoints/emoji.rb +1 -0
- data/lib/slack/web/api/endpoints/files.rb +35 -28
- data/lib/slack/web/api/endpoints/files_comments.rb +2 -34
- data/lib/slack/web/api/endpoints/files_remote.rb +127 -0
- data/lib/slack/web/api/endpoints/groups.rb +1 -243
- data/lib/slack/web/api/endpoints/im.rb +1 -101
- data/lib/slack/web/api/endpoints/migration.rb +5 -2
- data/lib/slack/web/api/endpoints/mpim.rb +1 -86
- data/lib/slack/web/api/endpoints/oauth.rb +8 -30
- data/lib/slack/web/api/endpoints/oauth_v2.rb +48 -0
- data/lib/slack/web/api/endpoints/openid_connect.rb +42 -0
- data/lib/slack/web/api/endpoints/pins.rb +8 -15
- data/lib/slack/web/api/endpoints/reactions.rb +29 -18
- data/lib/slack/web/api/endpoints/reminders.rb +18 -5
- data/lib/slack/web/api/endpoints/rtm.rb +14 -9
- data/lib/slack/web/api/endpoints/search.rb +30 -15
- data/lib/slack/web/api/endpoints/stars.rb +23 -10
- data/lib/slack/web/api/endpoints/team.rb +15 -4
- data/lib/slack/web/api/endpoints/team_billing.rb +21 -0
- data/lib/slack/web/api/endpoints/team_preferences.rb +21 -0
- data/lib/slack/web/api/endpoints/team_profile.rb +2 -1
- data/lib/slack/web/api/endpoints/tooling_tokens.rb +24 -0
- data/lib/slack/web/api/endpoints/usergroups.rb +27 -16
- data/lib/slack/web/api/endpoints/usergroups_users.rb +10 -5
- data/lib/slack/web/api/endpoints/users.rb +44 -17
- data/lib/slack/web/api/endpoints/users_admin.rb +1 -0
- data/lib/slack/web/api/endpoints/users_prefs.rb +1 -0
- data/lib/slack/web/api/endpoints/users_profile.rb +9 -8
- data/lib/slack/web/api/endpoints/views.rb +97 -0
- data/lib/slack/web/api/endpoints/workflows.rb +61 -0
- data/lib/slack/web/api/endpoints.rb +80 -12
- data/lib/slack/web/api/error.rb +1 -0
- data/lib/slack/web/api/errors/server_error.rb +37 -0
- data/lib/slack/web/api/errors/slack_error.rb +14 -1
- data/lib/slack/web/api/errors/too_many_requests_error.rb +2 -4
- data/lib/slack/web/api/errors.rb +1066 -0
- data/lib/slack/web/api/mixins/{channels.id.rb → conversations.id.rb} +4 -5
- data/lib/slack/web/api/mixins/ids.id.rb +3 -2
- data/lib/slack/web/api/mixins/users.id.rb +2 -3
- data/lib/slack/web/api/mixins/users.search.rb +1 -0
- data/lib/slack/web/api/mixins.rb +2 -2
- data/lib/slack/web/api/patches/chat.1.patch +70 -0
- data/lib/slack/web/api/patches/views.1.view-json.patch +40 -0
- data/lib/slack/web/api/patches/views.1.views-published.patch +16 -0
- data/lib/slack/web/api/templates/command.erb +1 -0
- data/lib/slack/web/api/templates/commands.erb +1 -0
- data/lib/slack/web/api/templates/endpoints.erb +2 -2
- data/lib/slack/web/api/templates/errors.erb +20 -0
- data/lib/slack/web/api/templates/method.erb +5 -1
- data/lib/slack/web/api/templates/method_spec.erb +2 -1
- data/lib/slack/web/client.rb +2 -1
- data/lib/slack/web/config.rb +3 -0
- data/lib/slack/web/faraday/connection.rb +24 -20
- data/lib/slack/web/faraday/request.rb +5 -1
- data/lib/slack/web/faraday/response/raise_error.rb +14 -7
- data/lib/slack/web/faraday/response/wrap_error.rb +24 -0
- data/lib/slack/web/pagination/cursor.rb +7 -7
- data/lib/slack-ruby-client.rb +12 -5
- data/lib/slack.rb +1 -0
- data/lib/slack_ruby_client.rb +1 -0
- data/lib/tasks/git.rake +1 -0
- data/lib/tasks/real_time.rake +16 -8
- data/lib/tasks/update.rake +1 -0
- data/lib/tasks/web.rake +39 -10
- data/screenshots/create-app.png +0 -0
- data/slack-ruby-client.gemspec +7 -12
- data/spec/fixtures/slack/web/429_error.yml +50 -54
- data/spec/fixtures/slack/web/auth_test_error.yml +51 -18
- data/spec/fixtures/slack/web/auth_test_success.yml +50 -26
- data/spec/fixtures/slack/web/conversations_info.yml +167 -0
- data/spec/fixtures/slack/web/conversations_setTopic.yml +84 -0
- data/spec/fixtures/slack/web/conversations_setTopic_one_page.yml +172 -0
- data/spec/fixtures/slack/web/conversations_setTopic_paginated.yml +253 -0
- data/spec/fixtures/slack/web/paginated_users_list.yml +501 -69
- data/spec/fixtures/slack/web/rtm_connect.yml +267 -30
- data/spec/fixtures/slack/web/rtm_start.yml +771 -60
- data/spec/fixtures/slack/web/users_info.yml +153 -69
- data/spec/fixtures/slack/web/users_list.yml +102 -41
- data/spec/fixtures/slack/web/views_open_error.yml +83 -0
- data/spec/integration/integration_spec.rb +116 -48
- data/spec/slack/config_spec.rb +2 -0
- data/spec/slack/events/config_spec.rb +33 -0
- data/spec/slack/events/request_spec.rb +184 -0
- data/spec/slack/messages/formatting_spec.rb +25 -14
- data/spec/slack/real_time/api/message_spec.rb +6 -1
- data/spec/slack/real_time/api/ping_spec.rb +2 -0
- data/spec/slack/real_time/api/typing_spec.rb +5 -1
- data/spec/slack/real_time/client_spec.rb +258 -62
- data/spec/slack/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +2 -0
- data/spec/slack/real_time/concurrency/with_concurrency_spec.rb +10 -0
- data/spec/slack/real_time/concurrency/without_concurrency_spec.rb +10 -0
- data/spec/slack/real_time/event_handlers/bot_spec.rb +3 -2
- data/spec/slack/real_time/event_handlers/channel_spec.rb +14 -11
- data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +2 -1
- data/spec/slack/real_time/event_handlers/group_spec.rb +6 -5
- data/spec/slack/real_time/event_handlers/im_spec.rb +10 -9
- data/spec/slack/real_time/event_handlers/team_spec.rb +3 -1
- data/spec/slack/real_time/event_handlers/user_spec.rb +3 -2
- data/spec/slack/real_time/rtm_connect_spec.rb +2 -1
- data/spec/slack/real_time/rtm_start_spec.rb +2 -1
- data/spec/slack/real_time/store_spec.rb +4 -3
- data/spec/slack/slack_spec.rb +42 -8
- data/spec/slack/version_spec.rb +2 -1
- data/spec/slack/web/api/endpoints/admin_analytics_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_apps_approved_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_apps_restricted_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_spec.rb +18 -0
- data/spec/slack/web/api/endpoints/admin_auth_policy_spec.rb +35 -0
- data/spec/slack/web/api/endpoints/admin_barriers_spec.rb +38 -0
- data/spec/slack/web/api/endpoints/admin_conversations_ekm_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_conversations_restrictAccess_spec.rb +32 -0
- data/spec/slack/web/api/endpoints/admin_conversations_spec.rb +98 -0
- data/spec/slack/web/api/endpoints/admin_emoji_spec.rb +37 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_approved_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_denied_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_spec.rb +18 -0
- data/spec/slack/web/api/endpoints/admin_teams_admins_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_teams_owners_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_teams_settings_spec.rb +53 -0
- data/spec/slack/web/api/endpoints/admin_teams_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/admin_usergroups_spec.rb +37 -0
- data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +41 -0
- data/spec/slack/web/api/endpoints/admin_users_spec.rb +67 -0
- data/spec/slack/web/api/endpoints/admin_users_unsupportedVersions_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/api_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_connections_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/apps_event_authorizations_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/apps_manifest_spec.rb +36 -0
- data/spec/slack/web/api/endpoints/apps_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/auth_teams_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/bookmarks_spec.rb +40 -0
- data/spec/slack/web/api/endpoints/bots_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/calls_participants_spec.rb +24 -0
- data/spec/slack/web/api/endpoints/calls_spec.rb +31 -0
- data/spec/slack/web/api/endpoints/chat_scheduledMessages_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +9 -7
- data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +131 -39
- data/spec/slack/web/api/endpoints/custom_specs/conversations_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +16 -6
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +8 -3
- data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +103 -0
- data/spec/slack/web/api/endpoints/dnd_spec.rb +4 -3
- data/spec/slack/web/api/endpoints/emoji_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/files_comments_spec.rb +3 -21
- data/spec/slack/web/api/endpoints/files_remote_spec.rb +24 -0
- data/spec/slack/web/api/endpoints/files_spec.rb +5 -4
- data/spec/slack/web/api/endpoints/migration_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/oauth_spec.rb +1 -22
- data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/openid_connect_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/pins_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/reactions_spec.rb +8 -1
- data/spec/slack/web/api/endpoints/reminders_spec.rb +3 -2
- data/spec/slack/web/api/endpoints/rtm_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/search_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/stars_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/team_billing_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/team_preferences_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/team_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/team_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/tooling_tokens_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/usergroups_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +3 -2
- data/spec/slack/web/api/endpoints/users_admin_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_prefs_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/workflows_spec.rb +26 -0
- data/spec/slack/web/api/error_spec.rb +7 -7
- data/spec/slack/web/api/errors/slack_error_spec.rb +26 -7
- data/spec/slack/web/api/mixins/conversations_list_spec.rb +21 -0
- data/spec/slack/web/api/mixins/conversations_spec.rb +43 -0
- data/spec/slack/web/api/mixins/users_spec.rb +25 -14
- data/spec/slack/web/api/pagination/cursor_spec.rb +43 -15
- data/spec/slack/web/client_spec.rb +186 -19
- data/spec/slack/web/faraday/request_spec.rb +80 -0
- data/spec/slack/web/faraday/response/raise_error_spec.rb +48 -12
- data/spec/spec_helper.rb +9 -2
- data/spec/support/queue_with_timeout.rb +5 -4
- data/spec/support/real_time/concurrency/mock.rb +1 -0
- data/spec/support/real_time/connected_client.rb +6 -6
- data/spec/support/real_time/event.rb +1 -0
- data/spec/support/token.rb +1 -0
- data/spec/support/vcr.rb +37 -1
- metadata +177 -231
- data/.travis.yml +0 -30
- data/examples/hi_real_time/Gemfile +0 -5
- data/examples/hi_real_time/hi.gif +0 -0
- data/examples/hi_real_time/hi.rb +0 -37
- data/examples/hi_real_time_async_celluloid/Gemfile +0 -6
- data/examples/hi_real_time_async_eventmachine/Procfile +0 -2
- data/examples/hi_real_time_async_eventmachine/hi.rb +0 -36
- data/lib/slack/real_time/concurrency/celluloid.rb +0 -117
- data/lib/slack/real_time/concurrency/eventmachine.rb +0 -60
- data/lib/slack/web/api/mixins/channels.id.json +0 -20
- data/lib/slack/web/api/mixins/groups.id.json +0 -20
- data/lib/slack/web/api/mixins/groups.id.rb +0 -26
- data/lib/slack/web/api/patches/chat.1.text-attachments-required.patch +0 -13
- data/lib/slack/web/api/patches/chat.2.attachments-json.patch +0 -17
- data/lib/slack/web/api/patches/chat.3.update-attachments-support.patch +0 -21
- data/lib/slack/web/api/patches/chat.4.postEphemeral-attachments-support.patch +0 -17
- data/screenshots/register-bot.png +0 -0
- data/spec/fixtures/slack/web/503_error.yml +0 -14
- data/spec/fixtures/slack/web/channels_info.yml +0 -46
- data/spec/fixtures/slack/web/groups_info.yml +0 -43
- data/spec/slack/real_time/concurrency/celluloid_spec.rb +0 -62
- data/spec/slack/real_time/concurrency/eventmachine_spec.rb +0 -47
- data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +0 -15
- data/spec/slack/web/api/endpoints/conversations_spec.rb +0 -100
- data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +0 -11
- data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +0 -11
- data/spec/slack/web/api/endpoints/im_spec.rb +0 -38
- data/spec/slack/web/api/endpoints/mpim_spec.rb +0 -38
- data/spec/slack/web/api/errors/service_unavailable_spec.rb +0 -14
- data/spec/slack/web/api/mixins/channels_spec.rb +0 -31
- data/spec/slack/web/api/mixins/groups_spec.rb +0 -31
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 243d21fccb29fbddcaac69727c60a1a947e5b7e3a53136f96953099539141ae6
|
4
|
+
data.tar.gz: dcfeabe229a37247b94e4e030a5abf675792835b061a7917afdfcbd9827f4228
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5891098e3cb0bb938241157c779c0a8cdac0e18edac21d0251dd80949c5d70f21cc3429773138fc0092e29937f4f525d51f9975a4aa0f059a7cfbcb78a3c3723
|
7
|
+
data.tar.gz: 05a88513dad67cf2dc50dd2580a50588d99413801498fc959c495234955c419b5a861c86b8c98bef49ea50dfabb346aa26356c406a521f084555cece9249d364
|
data/.github/FUNDING.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
github: [dblock]
|
@@ -0,0 +1,19 @@
|
|
1
|
+
name: PR Linter
|
2
|
+
on: [pull_request]
|
3
|
+
jobs:
|
4
|
+
danger:
|
5
|
+
runs-on: ubuntu-latest
|
6
|
+
env:
|
7
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/Gemfile.danger
|
8
|
+
steps:
|
9
|
+
- uses: actions/checkout@v2
|
10
|
+
with:
|
11
|
+
fetch-depth: 0
|
12
|
+
- uses: ruby/setup-ruby@v1
|
13
|
+
with:
|
14
|
+
ruby-version: 2.6
|
15
|
+
bundler-cache: true
|
16
|
+
- run: |
|
17
|
+
# the personal token is public, this is ok, base64 encode to avoid tripping Github
|
18
|
+
TOKEN=$(echo -n NWY1ZmM5MzEyMzNlYWY4OTZiOGU3MmI3MWQ3Mzk0MzgxMWE4OGVmYwo= | base64 --decode)
|
19
|
+
DANGER_GITHUB_API_TOKEN=$TOKEN bundle exec danger --verbose
|
@@ -0,0 +1,25 @@
|
|
1
|
+
name: Integration Tests
|
2
|
+
on: [push]
|
3
|
+
jobs:
|
4
|
+
test:
|
5
|
+
runs-on: ubuntu-latest
|
6
|
+
strategy:
|
7
|
+
matrix:
|
8
|
+
entry:
|
9
|
+
- { ruby: 2.7.1, concurrency: async-websocket }
|
10
|
+
name: test (ruby=${{ matrix.entry.ruby }}, concurrency=${{ matrix.entry.concurrency || 'none' }})
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v2
|
13
|
+
- name: Install Ruby
|
14
|
+
uses: ruby/setup-ruby@v1
|
15
|
+
with:
|
16
|
+
ruby-version: ${{ matrix.entry.ruby }}
|
17
|
+
- name: Run Tests
|
18
|
+
env:
|
19
|
+
CONCURRENCY: ${{ matrix.entry.concurrency }}
|
20
|
+
SLACK_API_TOKEN: ${{ secrets.SLACK_API_TOKEN }}
|
21
|
+
RACK_ENV: test
|
22
|
+
run: |
|
23
|
+
bundle install
|
24
|
+
bundle exec rake
|
25
|
+
|
@@ -0,0 +1,34 @@
|
|
1
|
+
name: Tests
|
2
|
+
on: [push, pull_request]
|
3
|
+
jobs:
|
4
|
+
test:
|
5
|
+
runs-on: ubuntu-latest
|
6
|
+
strategy:
|
7
|
+
matrix:
|
8
|
+
entry:
|
9
|
+
- { ruby: "2.7" }
|
10
|
+
- { ruby: "2.7", concurrency: async-websocket }
|
11
|
+
- { ruby: "3.0" }
|
12
|
+
- { ruby: "3.1" }
|
13
|
+
- { ruby: ruby-head, ignore: true }
|
14
|
+
- { ruby: jruby-head, ignore: true }
|
15
|
+
name: test (ruby=${{ matrix.entry.ruby }}, concurrency=${{ matrix.entry.concurrency || 'none' }})
|
16
|
+
steps:
|
17
|
+
- uses: actions/checkout@v2
|
18
|
+
- name: Install Ruby
|
19
|
+
uses: ruby/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
ruby-version: ${{ matrix.entry.ruby }}
|
22
|
+
- name: Set Concurrency
|
23
|
+
run: |
|
24
|
+
if [[ ! -z "${{ matrix.entry.concurrency }}" ]]; then
|
25
|
+
echo "Setting concurrency to ${{ matrix.entry.concurrency }}."
|
26
|
+
echo "CONCURRENCY=${{ matrix.entry.concurrency }}" >> $GITHUB_ENV
|
27
|
+
fi
|
28
|
+
- name: Run Tests
|
29
|
+
continue-on-error: ${{ matrix.entry.ignore || false }}
|
30
|
+
env:
|
31
|
+
RACK_ENV: test
|
32
|
+
run: |
|
33
|
+
bundle install
|
34
|
+
bundle exec rake
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,9 +1,43 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
2
|
+
|
3
|
+
require:
|
4
|
+
- rubocop-performance
|
5
|
+
- rubocop-rake
|
6
|
+
- rubocop-rspec
|
7
|
+
|
1
8
|
AllCops:
|
9
|
+
TargetRubyVersion: 2.7
|
10
|
+
NewCops: enable
|
11
|
+
DisplayCopNames: true
|
2
12
|
Exclude:
|
13
|
+
- bin/**/*
|
3
14
|
- vendor/**/*
|
4
15
|
- lib/slack/web/api/slack-api-ref/**/*
|
16
|
+
- lib/slack/web/api/endpoints/* # Auto-generated
|
17
|
+
- lib/slack/web/api/errors.rb # Auto-generated
|
18
|
+
- spec/slack/web/api/endpoints/* # Auto-generated
|
5
19
|
|
6
|
-
|
20
|
+
Layout/EmptyLineAfterMagicComment:
|
7
21
|
Enabled: false
|
8
22
|
|
9
|
-
|
23
|
+
Metrics/BlockLength:
|
24
|
+
Enabled: false
|
25
|
+
|
26
|
+
Metrics/ClassLength:
|
27
|
+
Max: 250
|
28
|
+
|
29
|
+
Layout/LineLength:
|
30
|
+
Max: 128
|
31
|
+
|
32
|
+
Style/Documentation:
|
33
|
+
Enabled: false
|
34
|
+
|
35
|
+
Style/ModuleFunction:
|
36
|
+
Enabled: false
|
37
|
+
|
38
|
+
RSpec/InstanceVariable:
|
39
|
+
Enabled: false
|
40
|
+
|
41
|
+
Naming/FileName:
|
42
|
+
Exclude:
|
43
|
+
- lib/slack-ruby-client.rb # Required to match gemspec name
|
data/.rubocop_todo.yml
CHANGED
@@ -1,94 +1,226 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2022-05-04 06:11:49 UTC using RuboCop version 1.26.1.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
|
-
# Offense count:
|
10
|
-
|
9
|
+
# Offense count: 1
|
10
|
+
# Configuration parameters: AllowedMethods.
|
11
|
+
# AllowedMethods: enums
|
12
|
+
Lint/ConstantDefinitionInBlock:
|
11
13
|
Exclude:
|
12
|
-
- 'lib/
|
13
|
-
- 'spec/slack/real_time/concurrency/celluloid_spec.rb'
|
14
|
-
- 'spec/slack/real_time/concurrency/eventmachine_spec.rb'
|
14
|
+
- 'lib/tasks/real_time.rake'
|
15
15
|
|
16
16
|
# Offense count: 1
|
17
|
-
|
17
|
+
# Configuration parameters: AllowComments, AllowEmptyLambdas.
|
18
|
+
Lint/EmptyBlock:
|
18
19
|
Exclude:
|
19
|
-
- '
|
20
|
+
- 'spec/support/real_time/concurrency/mock.rb'
|
20
21
|
|
21
|
-
# Offense count:
|
22
|
-
|
23
|
-
|
22
|
+
# Offense count: 1
|
23
|
+
# Configuration parameters: AllowComments.
|
24
|
+
Lint/EmptyClass:
|
25
|
+
Exclude:
|
26
|
+
- 'spec/support/real_time/concurrency/mock.rb'
|
24
27
|
|
25
|
-
# Offense count:
|
26
|
-
|
27
|
-
|
28
|
-
|
28
|
+
# Offense count: 2
|
29
|
+
Lint/MissingSuper:
|
30
|
+
Exclude:
|
31
|
+
- 'lib/slack/real_time/stores/starter.rb'
|
32
|
+
- 'lib/slack/real_time/stores/store.rb'
|
33
|
+
|
34
|
+
# Offense count: 1
|
35
|
+
# This cop supports unsafe auto-correction (--auto-correct-all).
|
36
|
+
Lint/NonDeterministicRequireOrder:
|
37
|
+
Exclude:
|
38
|
+
- 'spec/spec_helper.rb'
|
29
39
|
|
30
40
|
# Offense count: 2
|
31
|
-
#
|
32
|
-
|
33
|
-
|
41
|
+
# This cop supports safe auto-correction (--auto-correct).
|
42
|
+
Lint/RedundantCopDisableDirective:
|
43
|
+
Exclude:
|
44
|
+
- 'lib/slack-ruby-client.rb'
|
45
|
+
|
46
|
+
# Offense count: 12
|
47
|
+
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
|
48
|
+
Metrics/AbcSize:
|
49
|
+
Max: 48
|
34
50
|
|
35
51
|
# Offense count: 4
|
52
|
+
# Configuration parameters: IgnoredMethods.
|
36
53
|
Metrics/CyclomaticComplexity:
|
37
|
-
Max:
|
54
|
+
Max: 14
|
38
55
|
|
39
|
-
# Offense count:
|
40
|
-
# Configuration parameters:
|
41
|
-
# URISchemes: http, https
|
42
|
-
Metrics/LineLength:
|
43
|
-
Max: 266
|
44
|
-
|
45
|
-
# Offense count: 10
|
46
|
-
# Configuration parameters: CountComments.
|
56
|
+
# Offense count: 12
|
57
|
+
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
47
58
|
Metrics/MethodLength:
|
48
|
-
Max:
|
59
|
+
Max: 32
|
49
60
|
|
50
61
|
# Offense count: 1
|
51
|
-
# Configuration parameters:
|
52
|
-
Metrics/
|
53
|
-
Max:
|
62
|
+
# Configuration parameters: CountKeywordArgs, MaxOptionalParameters.
|
63
|
+
Metrics/ParameterLists:
|
64
|
+
Max: 6
|
54
65
|
|
55
|
-
# Offense count:
|
66
|
+
# Offense count: 2
|
67
|
+
# Configuration parameters: IgnoredMethods.
|
56
68
|
Metrics/PerceivedComplexity:
|
57
|
-
Max:
|
69
|
+
Max: 16
|
58
70
|
|
59
71
|
# Offense count: 1
|
60
|
-
# Configuration parameters:
|
61
|
-
|
62
|
-
Naming/FileName:
|
72
|
+
# Configuration parameters: MinSize.
|
73
|
+
Performance/CollectionLiteralInLoop:
|
63
74
|
Exclude:
|
64
|
-
- 'lib/
|
75
|
+
- 'lib/tasks/real_time.rake'
|
76
|
+
|
77
|
+
# Offense count: 2
|
78
|
+
# This cop supports safe auto-correction (--auto-correct).
|
79
|
+
Performance/RegexpMatch:
|
80
|
+
Exclude:
|
81
|
+
- 'lib/tasks/web.rake'
|
82
|
+
|
83
|
+
# Offense count: 3
|
84
|
+
# This cop supports safe auto-correction (--auto-correct).
|
85
|
+
Performance/StringInclude:
|
86
|
+
Exclude:
|
87
|
+
- 'lib/tasks/web.rake'
|
88
|
+
|
89
|
+
# Offense count: 3
|
90
|
+
# This cop supports safe auto-correction (--auto-correct).
|
91
|
+
RSpec/ContextMethod:
|
92
|
+
Exclude:
|
93
|
+
- 'spec/slack/messages/formatting_spec.rb'
|
94
|
+
- 'spec/slack/web/api/mixins/users_spec.rb'
|
95
|
+
|
96
|
+
# Offense count: 77
|
97
|
+
# Configuration parameters: Prefixes.
|
98
|
+
# Prefixes: when, with, without
|
99
|
+
RSpec/ContextWording:
|
100
|
+
Enabled: false
|
65
101
|
|
66
|
-
# Offense count:
|
67
|
-
|
102
|
+
# Offense count: 127
|
103
|
+
# This cop supports safe auto-correction (--auto-correct).
|
104
|
+
# Configuration parameters: AllowConsecutiveOneLiners.
|
105
|
+
RSpec/EmptyLineAfterExample:
|
68
106
|
Enabled: false
|
69
107
|
|
70
|
-
# Offense count:
|
71
|
-
# Configuration parameters:
|
72
|
-
|
108
|
+
# Offense count: 64
|
109
|
+
# Configuration parameters: CountAsOne.
|
110
|
+
RSpec/ExampleLength:
|
111
|
+
Max: 18
|
112
|
+
|
113
|
+
# Offense count: 17
|
114
|
+
# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
|
115
|
+
# Include: **/*_spec*rb*, **/spec/**/*
|
116
|
+
RSpec/FilePath:
|
73
117
|
Enabled: false
|
74
118
|
|
119
|
+
# Offense count: 65
|
120
|
+
# Configuration parameters: .
|
121
|
+
# SupportedStyles: have_received, receive
|
122
|
+
RSpec/MessageSpies:
|
123
|
+
EnforcedStyle: receive
|
124
|
+
|
125
|
+
# Offense count: 96
|
126
|
+
RSpec/MultipleExpectations:
|
127
|
+
Max: 5
|
128
|
+
|
129
|
+
# Offense count: 5
|
130
|
+
# Configuration parameters: AllowSubject.
|
131
|
+
RSpec/MultipleMemoizedHelpers:
|
132
|
+
Max: 9
|
133
|
+
|
134
|
+
# Offense count: 3
|
135
|
+
# Configuration parameters: IgnoreSharedExamples.
|
136
|
+
RSpec/NamedSubject:
|
137
|
+
Exclude:
|
138
|
+
- 'spec/slack/web/api/mixins/conversations_list_spec.rb'
|
139
|
+
|
140
|
+
# Offense count: 50
|
141
|
+
RSpec/NestedGroups:
|
142
|
+
Max: 6
|
143
|
+
|
144
|
+
# Offense count: 6
|
145
|
+
RSpec/StubbedMock:
|
146
|
+
Exclude:
|
147
|
+
- 'spec/slack/real_time/client_spec.rb'
|
148
|
+
- 'spec/slack/real_time/event_handlers/event_handlers_spec.rb'
|
149
|
+
- 'spec/slack/web/api/pagination/cursor_spec.rb'
|
150
|
+
- 'spec/slack/web/client_spec.rb'
|
151
|
+
|
75
152
|
# Offense count: 2
|
76
|
-
|
77
|
-
Style/GuardClause:
|
153
|
+
RSpec/SubjectStub:
|
78
154
|
Exclude:
|
79
|
-
- '
|
80
|
-
- '
|
155
|
+
- 'spec/slack/web/api/mixins/conversations_spec.rb'
|
156
|
+
- 'spec/slack/web/api/mixins/users_spec.rb'
|
81
157
|
|
82
|
-
# Offense count:
|
83
|
-
#
|
84
|
-
#
|
85
|
-
|
158
|
+
# Offense count: 4
|
159
|
+
# This cop supports safe auto-correction (--auto-correct).
|
160
|
+
# Configuration parameters: .
|
161
|
+
# SupportedStyles: constant, string
|
162
|
+
RSpec/VerifiedDoubleReference:
|
163
|
+
EnforcedStyle: string
|
164
|
+
|
165
|
+
# Offense count: 12
|
166
|
+
# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
|
167
|
+
RSpec/VerifiedDoubles:
|
86
168
|
Exclude:
|
87
|
-
- '
|
88
|
-
- '
|
89
|
-
- '
|
169
|
+
- 'spec/slack/events/request_spec.rb'
|
170
|
+
- 'spec/slack/real_time/client_spec.rb'
|
171
|
+
- 'spec/slack/web/faraday/response/raise_error_spec.rb'
|
172
|
+
- 'spec/support/real_time/connected_client.rb'
|
90
173
|
|
91
174
|
# Offense count: 1
|
175
|
+
# This cop supports safe auto-correction (--auto-correct).
|
176
|
+
Rake/Desc:
|
177
|
+
Exclude:
|
178
|
+
- 'lib/tasks/git.rake'
|
179
|
+
|
180
|
+
# Offense count: 4
|
181
|
+
# Configuration parameters: MaxUnannotatedPlaceholdersAllowed, IgnoredMethods.
|
182
|
+
# SupportedStyles: annotated, template, unannotated
|
183
|
+
Style/FormatStringToken:
|
184
|
+
EnforcedStyle: unannotated
|
185
|
+
|
186
|
+
# Offense count: 6
|
187
|
+
# This cop supports safe auto-correction (--auto-correct).
|
188
|
+
Style/GlobalStdStream:
|
189
|
+
Exclude:
|
190
|
+
- 'lib/slack/logger.rb'
|
191
|
+
- 'lib/tasks/real_time.rake'
|
192
|
+
- 'spec/integration/integration_spec.rb'
|
193
|
+
- 'spec/slack/web/client_spec.rb'
|
194
|
+
|
195
|
+
# Offense count: 1
|
196
|
+
# This cop supports safe auto-correction (--auto-correct).
|
92
197
|
Style/MultilineTernaryOperator:
|
93
198
|
Exclude:
|
94
|
-
- 'spec/support/
|
199
|
+
- 'spec/support/vcr.rb'
|
200
|
+
|
201
|
+
# Offense count: 3
|
202
|
+
Style/OpenStructUse:
|
203
|
+
Exclude:
|
204
|
+
- 'spec/slack/web/api/endpoints/custom_specs/chat_spec.rb'
|
205
|
+
- 'spec/slack/web/api/pagination/cursor_spec.rb'
|
206
|
+
- 'spec/slack/web/faraday/response/raise_error_spec.rb'
|
207
|
+
|
208
|
+
# Offense count: 1
|
209
|
+
# Configuration parameters: AllowedMethods.
|
210
|
+
# AllowedMethods: respond_to_missing?
|
211
|
+
Style/OptionalBooleanParameter:
|
212
|
+
Exclude:
|
213
|
+
- 'spec/support/queue_with_timeout.rb'
|
214
|
+
|
215
|
+
# Offense count: 1
|
216
|
+
# This cop supports unsafe auto-correction (--auto-correct-all).
|
217
|
+
Style/SlicingWithRange:
|
218
|
+
Exclude:
|
219
|
+
- 'lib/slack/web/api/mixins/ids.id.rb'
|
220
|
+
|
221
|
+
# Offense count: 1
|
222
|
+
# This cop supports unsafe auto-correction (--auto-correct-all).
|
223
|
+
# Configuration parameters: Mode.
|
224
|
+
Style/StringConcatenation:
|
225
|
+
Exclude:
|
226
|
+
- 'lib/tasks/real_time.rake'
|