slack-ruby-client 0.12.0 → 0.14.6
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/.gitignore +1 -0
- data/.rubocop.yml +21 -9
- data/.rubocop_todo.yml +64 -56
- data/.travis.yml +5 -3
- data/CHANGELOG.md +90 -32
- data/Dangerfile +2 -0
- data/Gemfile +10 -4
- data/LICENSE.md +1 -1
- data/README.md +176 -32
- data/Rakefile +2 -1
- data/UPGRADING.md +27 -1
- data/bin/commands.rb +21 -0
- data/bin/commands/admin_apps.rb +27 -0
- data/bin/commands/admin_apps_approved.rb +17 -0
- data/bin/commands/admin_apps_requests.rb +16 -0
- data/bin/commands/admin_apps_restricted.rb +17 -0
- data/bin/commands/admin_conversations.rb +17 -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_users.rb +97 -0
- data/bin/commands/admin_users_session.rb +16 -0
- data/bin/commands/api.rb +1 -0
- data/bin/commands/apps.rb +15 -0
- data/bin/commands/apps_permissions.rb +1 -0
- data/bin/commands/apps_permissions_resources.rb +1 -0
- data/bin/commands/apps_permissions_scopes.rb +1 -0
- data/bin/commands/apps_permissions_users.rb +1 -0
- data/bin/commands/auth.rb +1 -0
- data/bin/commands/bots.rb +1 -0
- data/bin/commands/channels.rb +3 -1
- data/bin/commands/chat.rb +48 -9
- data/bin/commands/chat_scheduledMessages.rb +18 -0
- data/bin/commands/conversations.rb +4 -2
- data/bin/commands/dialog.rb +1 -0
- data/bin/commands/dnd.rb +4 -3
- data/bin/commands/emoji.rb +1 -0
- data/bin/commands/files.rb +4 -14
- data/bin/commands/files_comments.rb +1 -21
- data/bin/commands/files_remote.rb +78 -0
- data/bin/commands/groups.rb +2 -1
- data/bin/commands/im.rb +2 -1
- data/bin/commands/migration.rb +1 -0
- data/bin/commands/mpim.rb +2 -1
- data/bin/commands/oauth.rb +2 -1
- data/bin/commands/oauth_v2.rb +17 -0
- data/bin/commands/pins.rb +1 -2
- data/bin/commands/reactions.rb +2 -3
- data/bin/commands/reminders.rb +1 -0
- data/bin/commands/rtm.rb +1 -0
- data/bin/commands/search.rb +2 -1
- data/bin/commands/stars.rb +1 -0
- data/bin/commands/team.rb +2 -0
- data/bin/commands/team_profile.rb +1 -0
- data/bin/commands/usergroups.rb +2 -1
- data/bin/commands/usergroups_users.rb +1 -0
- data/bin/commands/users.rb +2 -2
- data/bin/commands/users_admin.rb +1 -0
- data/bin/commands/users_prefs.rb +1 -0
- data/bin/commands/users_profile.rb +1 -0
- data/bin/commands/views.rb +48 -0
- data/bin/slack +2 -3
- data/examples/hi_real_time/Gemfile +1 -0
- data/examples/hi_real_time/hi.rb +7 -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_async/Gemfile +7 -0
- data/examples/hi_real_time_async_async/Procfile +2 -0
- data/examples/hi_real_time_async_async/hi.rb +41 -0
- data/examples/hi_real_time_async_celluloid/Gemfile +1 -0
- data/examples/hi_real_time_async_celluloid/hi.rb +7 -3
- data/examples/hi_real_time_async_eventmachine/Gemfile +1 -0
- data/examples/hi_real_time_async_eventmachine/hi.rb +7 -3
- 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-ruby-client.rb +8 -2
- data/lib/slack.rb +1 -0
- data/lib/slack/config.rb +1 -0
- data/lib/slack/events/config.rb +32 -0
- data/lib/slack/events/request.rb +66 -0
- data/lib/slack/logger.rb +6 -5
- data/lib/slack/messages/formatting.rb +1 -0
- data/lib/slack/messages/message.rb +1 -0
- 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 +97 -28
- data/lib/slack/real_time/concurrency.rb +2 -0
- data/lib/slack/real_time/concurrency/async.rb +142 -0
- data/lib/slack/real_time/concurrency/celluloid.rb +33 -9
- data/lib/slack/real_time/concurrency/eventmachine.rb +32 -7
- data/lib/slack/real_time/config.rb +7 -2
- data/lib/slack/real_time/models.rb +1 -0
- data/lib/slack/real_time/models/base.rb +1 -0
- 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/socket.rb +42 -13
- data/lib/slack/real_time/stores.rb +1 -0
- data/lib/slack/real_time/stores/base.rb +1 -0
- data/lib/slack/real_time/stores/starter.rb +11 -0
- data/lib/slack/real_time/stores/store.rb +28 -25
- data/lib/slack/version.rb +2 -1
- data/lib/slack/web/api/endpoints.rb +41 -0
- data/lib/slack/web/api/endpoints/admin_apps.rb +42 -0
- data/lib/slack/web/api/endpoints/admin_apps_approved.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_apps_requests.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_apps_restricted.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_conversations.rb +30 -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_users.rb +163 -0
- data/lib/slack/web/api/endpoints/admin_users_session.rb +28 -0
- data/lib/slack/web/api/endpoints/api.rb +1 -0
- data/lib/slack/web/api/endpoints/apps.rb +27 -0
- data/lib/slack/web/api/endpoints/apps_permissions.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_resources.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_scopes.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_users.rb +1 -0
- data/lib/slack/web/api/endpoints/auth.rb +1 -0
- data/lib/slack/web/api/endpoints/bots.rb +1 -0
- data/lib/slack/web/api/endpoints/channels.rb +3 -0
- data/lib/slack/web/api/endpoints/chat.rb +99 -12
- data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +38 -0
- data/lib/slack/web/api/endpoints/conversations.rb +4 -1
- data/lib/slack/web/api/endpoints/dialog.rb +1 -0
- data/lib/slack/web/api/endpoints/dnd.rb +3 -1
- data/lib/slack/web/api/endpoints/emoji.rb +1 -0
- data/lib/slack/web/api/endpoints/files.rb +4 -13
- data/lib/slack/web/api/endpoints/files_comments.rb +1 -33
- data/lib/slack/web/api/endpoints/files_remote.rb +127 -0
- data/lib/slack/web/api/endpoints/groups.rb +1 -0
- data/lib/slack/web/api/endpoints/im.rb +1 -0
- data/lib/slack/web/api/endpoints/migration.rb +1 -0
- data/lib/slack/web/api/endpoints/mpim.rb +1 -0
- data/lib/slack/web/api/endpoints/oauth.rb +2 -1
- data/lib/slack/web/api/endpoints/oauth_v2.rb +30 -0
- data/lib/slack/web/api/endpoints/pins.rb +2 -4
- data/lib/slack/web/api/endpoints/reactions.rb +5 -6
- data/lib/slack/web/api/endpoints/reminders.rb +1 -0
- data/lib/slack/web/api/endpoints/rtm.rb +1 -0
- data/lib/slack/web/api/endpoints/search.rb +1 -0
- data/lib/slack/web/api/endpoints/stars.rb +1 -0
- data/lib/slack/web/api/endpoints/team.rb +3 -0
- data/lib/slack/web/api/endpoints/team_profile.rb +1 -0
- data/lib/slack/web/api/endpoints/usergroups.rb +1 -0
- data/lib/slack/web/api/endpoints/usergroups_users.rb +1 -0
- data/lib/slack/web/api/endpoints/users.rb +1 -2
- 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 +1 -0
- data/lib/slack/web/api/endpoints/views.rb +97 -0
- data/lib/slack/web/api/error.rb +1 -0
- data/lib/slack/web/api/errors.rb +566 -0
- data/lib/slack/web/api/errors/slack_error.rb +14 -1
- data/lib/slack/web/api/errors/too_many_requests_error.rb +1 -0
- data/lib/slack/web/api/mixins.rb +1 -0
- data/lib/slack/web/api/mixins/channels.id.rb +1 -0
- data/lib/slack/web/api/mixins/groups.id.rb +1 -0
- data/lib/slack/web/api/mixins/ids.id.rb +4 -1
- data/lib/slack/web/api/mixins/users.id.rb +1 -0
- data/lib/slack/web/api/mixins/users.search.rb +1 -0
- data/lib/slack/web/api/patches/chat.5.postEphemeral-text-or-attachments.patch +5 -3
- data/lib/slack/web/api/patches/chat.6.block-kit-support.patch +69 -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 +1 -0
- data/lib/slack/web/api/templates/errors.erb +20 -0
- data/lib/slack/web/api/templates/method.erb +1 -0
- data/lib/slack/web/api/templates/method_spec.erb +1 -0
- data/lib/slack/web/client.rb +2 -1
- data/lib/slack/web/config.rb +1 -0
- data/lib/slack/web/faraday/connection.rb +1 -0
- data/lib/slack/web/faraday/request.rb +1 -0
- data/lib/slack/web/faraday/response/raise_error.rb +10 -6
- data/lib/slack/web/pagination/cursor.rb +4 -0
- data/lib/slack_ruby_client.rb +1 -0
- data/lib/tasks/git.rake +1 -0
- data/lib/tasks/real_time.rake +15 -5
- data/lib/tasks/update.rake +1 -0
- data/lib/tasks/web.rake +28 -7
- data/screenshots/create-app.png +0 -0
- data/slack-ruby-client.gemspec +6 -2
- data/spec/fixtures/slack/web/views_open_error.yml +76 -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 +179 -0
- data/spec/slack/messages/formatting_spec.rb +25 -13
- 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 +212 -31
- data/spec/slack/real_time/concurrency/celluloid_spec.rb +15 -5
- data/spec/slack/real_time/concurrency/eventmachine_spec.rb +11 -1
- data/spec/slack/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +2 -0
- data/spec/slack/real_time/event_handlers/bot_spec.rb +2 -1
- data/spec/slack/real_time/event_handlers/channel_spec.rb +9 -6
- data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +2 -1
- data/spec/slack/real_time/event_handlers/group_spec.rb +5 -4
- data/spec/slack/real_time/event_handlers/im_spec.rb +4 -3
- data/spec/slack/real_time/event_handlers/team_spec.rb +3 -1
- data/spec/slack/real_time/event_handlers/user_spec.rb +1 -0
- data/spec/slack/real_time/rtm_connect_spec.rb +1 -0
- data/spec/slack/real_time/rtm_start_spec.rb +1 -0
- data/spec/slack/real_time/store_spec.rb +2 -1
- data/spec/slack/slack_spec.rb +37 -5
- data/spec/slack/version_spec.rb +2 -1
- data/spec/slack/web/api/endpoints/admin_apps_approved_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_restricted_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_conversations_spec.rb +13 -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_users_session_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_users_spec.rb +75 -0
- data/spec/slack/web/api/endpoints/api_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_permissions_resources_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_permissions_scopes_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +3 -2
- data/spec/slack/web/api/endpoints/apps_permissions_users_spec.rb +4 -3
- data/spec/slack/web/api/endpoints/apps_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/bots_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/chat_scheduledMessages_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/conversations_spec.rb +2 -1
- data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +5 -1
- data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +2 -0
- data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +112 -36
- data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +12 -4
- data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +2 -0
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +6 -1
- data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +95 -0
- data/spec/slack/web/api/endpoints/dnd_spec.rb +6 -0
- data/spec/slack/web/api/endpoints/emoji_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/files_comments_spec.rb +1 -19
- data/spec/slack/web/api/endpoints/files_remote_spec.rb +24 -0
- data/spec/slack/web/api/endpoints/files_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/im_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/migration_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/mpim_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/oauth_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/pins_spec.rb +5 -1
- data/spec/slack/web/api/endpoints/reactions_spec.rb +8 -1
- data/spec/slack/web/api/endpoints/reminders_spec.rb +1 -0
- 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_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/team_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/usergroups_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +1 -0
- 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/views_spec.rb +29 -0
- data/spec/slack/web/api/error_spec.rb +4 -2
- data/spec/slack/web/api/errors/service_unavailable_spec.rb +6 -3
- data/spec/slack/web/api/errors/slack_error_spec.rb +26 -2
- data/spec/slack/web/api/mixins/channels_spec.rb +17 -7
- data/spec/slack/web/api/mixins/groups_spec.rb +17 -7
- data/spec/slack/web/api/mixins/users_spec.rb +17 -8
- data/spec/slack/web/api/pagination/cursor_spec.rb +40 -10
- data/spec/slack/web/client_spec.rb +45 -18
- data/spec/slack/web/faraday/response/raise_error_spec.rb +41 -7
- data/spec/spec_helper.rb +8 -1
- 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 +9 -3
- data/spec/support/real_time/event.rb +1 -0
- data/spec/support/token.rb +1 -0
- data/spec/support/vcr.rb +1 -0
- metadata +149 -9
- data/screenshots/register-bot.png +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'AdminUsersSession methods.'
|
|
5
|
+
command 'admin_users_session' do |g|
|
|
6
|
+
g.desc 'Wipes all valid sessions on all devices for a given user'
|
|
7
|
+
g.long_desc %( Wipes all valid sessions on all devices for a given user )
|
|
8
|
+
g.command 'reset' do |c|
|
|
9
|
+
c.flag 'user_id', desc: 'The ID of the user to wipe sessions for.'
|
|
10
|
+
c.flag 'mobile_only', desc: 'Only expire mobile sessions (default: false).'
|
|
11
|
+
c.flag 'web_only', desc: 'Only expire web sessions (default: false).'
|
|
12
|
+
c.action do |_global_options, options, _args|
|
|
13
|
+
puts JSON.dump($client.admin_users_session_reset(options))
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
data/bin/commands/api.rb
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'Apps methods.'
|
|
5
|
+
command 'apps' do |g|
|
|
6
|
+
g.desc 'Uninstalls your app from a workspace.'
|
|
7
|
+
g.long_desc %( Uninstalls your app from a workspace. )
|
|
8
|
+
g.command 'uninstall' do |c|
|
|
9
|
+
c.flag 'client_id', desc: 'Issued when you created your application.'
|
|
10
|
+
c.flag 'client_secret', desc: 'Issued when you created your application.'
|
|
11
|
+
c.action do |_global_options, options, _args|
|
|
12
|
+
puts JSON.dump($client.apps_uninstall(options))
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
data/bin/commands/auth.rb
CHANGED
data/bin/commands/bots.rb
CHANGED
data/bin/commands/channels.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
|
-
desc
|
|
4
|
+
desc 'Channels methods.'
|
|
4
5
|
command 'channels' do |g|
|
|
5
6
|
g.desc 'Archives a channel.'
|
|
6
7
|
g.long_desc %( Archives a channel. )
|
|
@@ -149,6 +150,7 @@ command 'channels' do |g|
|
|
|
149
150
|
g.command 'setPurpose' do |c|
|
|
150
151
|
c.flag 'channel', desc: 'Channel to set the purpose of.'
|
|
151
152
|
c.flag 'purpose', desc: 'The new purpose.'
|
|
153
|
+
c.flag 'name_tagging', desc: 'if it is true, treat this like a message and not an unescaped thing.'
|
|
152
154
|
c.action do |_global_options, options, _args|
|
|
153
155
|
puts JSON.dump($client.channels_setPurpose(options))
|
|
154
156
|
end
|
data/bin/commands/chat.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
|
-
desc '
|
|
4
|
+
desc 'Chat methods.'
|
|
4
5
|
command 'chat' do |g|
|
|
5
6
|
g.desc 'Execute a slash command in a public channel (undocumented)'
|
|
6
7
|
g.long_desc %( Execute a slash command in a public channel )
|
|
@@ -24,6 +25,17 @@ command 'chat' do |g|
|
|
|
24
25
|
end
|
|
25
26
|
end
|
|
26
27
|
|
|
28
|
+
g.desc 'Deletes a pending scheduled message from the queue.'
|
|
29
|
+
g.long_desc %( Deletes a pending scheduled message from the queue. )
|
|
30
|
+
g.command 'deleteScheduledMessage' do |c|
|
|
31
|
+
c.flag 'channel', desc: 'The channel the scheduled_message is posting to.'
|
|
32
|
+
c.flag 'scheduled_message_id', desc: 'scheduled_message_id returned from call to chat.scheduleMessage.'
|
|
33
|
+
c.flag 'as_user', desc: 'Pass true to delete the message as the authed user with chat:write:user scope. Bot users in this context are considered authed users. If unused or false, the message will be deleted with chat:write:bot scope.'
|
|
34
|
+
c.action do |_global_options, options, _args|
|
|
35
|
+
puts JSON.dump($client.chat_deleteScheduledMessage(options))
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
27
39
|
g.desc 'Retrieve a permalink URL for a specific extant message'
|
|
28
40
|
g.long_desc %( Retrieve a permalink URL for a specific extant message )
|
|
29
41
|
g.command 'getPermalink' do |c|
|
|
@@ -47,13 +59,18 @@ command 'chat' do |g|
|
|
|
47
59
|
g.desc 'Sends an ephemeral message to a user in a channel.'
|
|
48
60
|
g.long_desc %( Sends an ephemeral message to a user in a channel. )
|
|
49
61
|
g.command 'postEphemeral' do |c|
|
|
62
|
+
c.flag 'attachments', desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string.'
|
|
50
63
|
c.flag 'channel', desc: 'Channel, private group, or IM channel to send message to. Can be an encoded ID, or a name.'
|
|
51
|
-
c.flag 'text', desc:
|
|
64
|
+
c.flag 'text', desc: 'How this field works and whether it is required depends on other fields you use in your API call. See below for more detail.'
|
|
52
65
|
c.flag 'user', desc: 'id of the user who will receive the ephemeral message. The user should be in the channel specified by the channel argument.'
|
|
53
|
-
c.flag 'as_user', desc: 'Pass true to post the message as the authed
|
|
54
|
-
c.flag '
|
|
66
|
+
c.flag 'as_user', desc: 'Pass true to post the message as the authed user. Defaults to true if the chat:write:bot scope is not included. Otherwise, defaults to false.'
|
|
67
|
+
c.flag 'blocks', desc: 'A JSON-based array of structured blocks, presented as a URL-encoded string.'
|
|
68
|
+
c.flag 'icon_emoji', desc: 'Emoji to use as the icon for this message. Overrides icon_url. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below.'
|
|
69
|
+
c.flag 'icon_url', desc: 'URL to an image to use as the icon for this message. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below.'
|
|
55
70
|
c.flag 'link_names', desc: 'Find and link channel names and usernames.'
|
|
56
71
|
c.flag 'parse', desc: 'Change how messages are treated. Defaults to none. See below.'
|
|
72
|
+
c.flag 'thread_ts', desc: "Provide another message's ts value to post this message in a thread. Avoid using a reply's ts value; use its parent's value instead. Ephemeral messages in threads are only shown if there is already an active thread."
|
|
73
|
+
c.flag 'username', desc: "Set your bot's user name. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below."
|
|
57
74
|
c.action do |_global_options, options, _args|
|
|
58
75
|
puts JSON.dump($client.chat_postEphemeral(options))
|
|
59
76
|
end
|
|
@@ -63,11 +80,12 @@ command 'chat' do |g|
|
|
|
63
80
|
g.long_desc %( Sends a message to a channel. )
|
|
64
81
|
g.command 'postMessage' do |c|
|
|
65
82
|
c.flag 'channel', desc: 'Channel, private group, or IM channel to send message to. Can be an encoded ID, or a name. See below for more details.'
|
|
66
|
-
c.flag 'text', desc:
|
|
67
|
-
c.flag 'as_user', desc: 'Pass true to post the message as the authed user, instead of as a bot. Defaults to false. See authorship below.'
|
|
83
|
+
c.flag 'text', desc: 'How this field works and whether it is required depends on other fields you use in your API call. See below for more detail.'
|
|
84
|
+
c.flag 'as_user', desc: 'Pass true to post the message as the authed user, instead of as a bot. Defaults to false. See authorship below. This argument may not be used with newer bot tokens.'
|
|
68
85
|
c.flag 'attachments', desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string.'
|
|
69
|
-
c.flag '
|
|
70
|
-
c.flag '
|
|
86
|
+
c.flag 'blocks', desc: 'A JSON-based array of structured blocks, presented as a URL-encoded string.'
|
|
87
|
+
c.flag 'icon_emoji', desc: 'Emoji to use as the icon for this message. Overrides icon_url. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below. This argument may not be used with newer bot tokens.'
|
|
88
|
+
c.flag 'icon_url', desc: 'URL to an image to use as the icon for this message. Must be used in conjunction with as_user set to false, otherwise ignored. See authorship below. This argument may not be used with newer bot tokens.'
|
|
71
89
|
c.flag 'link_names', desc: 'Find and link channel names and usernames.'
|
|
72
90
|
c.flag 'mrkdwn', desc: 'Disable Slack markup parsing by setting to false. Enabled by default.'
|
|
73
91
|
c.flag 'parse', desc: 'Change how messages are treated. Defaults to none. See below.'
|
|
@@ -81,12 +99,32 @@ command 'chat' do |g|
|
|
|
81
99
|
end
|
|
82
100
|
end
|
|
83
101
|
|
|
102
|
+
g.desc 'Schedules a message to be sent to a channel.'
|
|
103
|
+
g.long_desc %( Schedules a message to be sent to a channel. )
|
|
104
|
+
g.command 'scheduleMessage' do |c|
|
|
105
|
+
c.flag 'channel', desc: 'Channel, private group, or DM channel to send message to. Can be an encoded ID, or a name. See below for more details.'
|
|
106
|
+
c.flag 'post_at', desc: 'Unix EPOCH timestamp of time in future to send the message.'
|
|
107
|
+
c.flag 'text', desc: 'How this field works and whether it is required depends on other fields you use in your API call. See below for more detail.'
|
|
108
|
+
c.flag 'as_user', desc: 'Pass true to post the message as the authed user, instead of as a bot. Defaults to false. See chat.postMessage.'
|
|
109
|
+
c.flag 'attachments', desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string.'
|
|
110
|
+
c.flag 'blocks', desc: 'A JSON-based array of structured blocks, presented as a URL-encoded string.'
|
|
111
|
+
c.flag 'link_names', desc: 'Find and link channel names and usernames.'
|
|
112
|
+
c.flag 'parse', desc: 'Change how messages are treated. Defaults to none. See chat.postMessage.'
|
|
113
|
+
c.flag 'reply_broadcast', desc: 'Used in conjunction with thread_ts and indicates whether reply should be made visible to everyone in the channel or conversation. Defaults to false.'
|
|
114
|
+
c.flag 'thread_ts', desc: "Provide another message's ts value to make this message a reply. Avoid using a reply's ts value; use its parent instead."
|
|
115
|
+
c.flag 'unfurl_links', desc: 'Pass true to enable unfurling of primarily text-based content.'
|
|
116
|
+
c.flag 'unfurl_media', desc: 'Pass false to disable unfurling of media content.'
|
|
117
|
+
c.action do |_global_options, options, _args|
|
|
118
|
+
puts JSON.dump($client.chat_scheduleMessage(options))
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
|
|
84
122
|
g.desc 'Provide custom unfurl behavior for user-posted URLs'
|
|
85
123
|
g.long_desc %( Provide custom unfurl behavior for user-posted URLs )
|
|
86
124
|
g.command 'unfurl' do |c|
|
|
87
125
|
c.flag 'channel', desc: 'Channel ID of the message.'
|
|
88
126
|
c.flag 'ts', desc: 'Timestamp of the message to add unfurl behavior to.'
|
|
89
|
-
c.flag 'unfurls', desc: 'URL-encoded JSON map with keys set to URLs featured in the the message, pointing to their unfurl message attachments.'
|
|
127
|
+
c.flag 'unfurls', desc: 'URL-encoded JSON map with keys set to URLs featured in the the message, pointing to their unfurl blocks or message attachments.'
|
|
90
128
|
c.flag 'user_auth_message', desc: 'Provide a simply-formatted string to send as an ephemeral message to the user as invitation to authenticate further and enable full unfurling behavior.'
|
|
91
129
|
c.flag 'user_auth_required', desc: 'Set to true or 1 to indicate the user must install your Slack app to trigger unfurls for this domain.'
|
|
92
130
|
c.flag 'user_auth_url', desc: 'Send users to this custom URL where they will complete authentication in your app to fully trigger unfurling. Value should be properly URL-encoded.'
|
|
@@ -103,6 +141,7 @@ command 'chat' do |g|
|
|
|
103
141
|
c.flag 'ts', desc: 'Timestamp of the message to be updated.'
|
|
104
142
|
c.flag 'as_user', desc: 'Pass true to update the message as the authed user. Bot users in this context are considered authed users.'
|
|
105
143
|
c.flag 'attachments', desc: 'A JSON-based array of structured attachments, presented as a URL-encoded string. This field is required when not presenting text.'
|
|
144
|
+
c.flag 'blocks', desc: 'A JSON-based array of structured blocks, presented as a URL-encoded string.'
|
|
106
145
|
c.flag 'link_names', desc: 'Find and link channel names and usernames. Defaults to none. See below.'
|
|
107
146
|
c.flag 'parse', desc: 'Change how messages are treated. Defaults to client, unlike chat.postMessage. See below.'
|
|
108
147
|
c.action do |_global_options, options, _args|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'ChatScheduledmessages methods.'
|
|
5
|
+
command 'chat_scheduledMessages' do |g|
|
|
6
|
+
g.desc 'Returns a list of scheduled messages.'
|
|
7
|
+
g.long_desc %( Returns a list of scheduled messages. )
|
|
8
|
+
g.command 'list' do |c|
|
|
9
|
+
c.flag 'channel', desc: 'The channel of the scheduled messages.'
|
|
10
|
+
c.flag 'cursor', desc: 'For pagination purposes, this is the cursor value returned from a previous call to chat.scheduledmessages.list indicating where you want to start this call from.'
|
|
11
|
+
c.flag 'latest', desc: 'A UNIX timestamp of the latest value in the time range.'
|
|
12
|
+
c.flag 'limit', desc: 'Maximum number of original entries to return.'
|
|
13
|
+
c.flag 'oldest', desc: 'A UNIX timestamp of the oldest value in the time range.'
|
|
14
|
+
c.action do |_global_options, options, _args|
|
|
15
|
+
puts JSON.dump($client.chat_scheduledMessages_list(options))
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
|
-
desc
|
|
4
|
+
desc 'Conversations methods.'
|
|
4
5
|
command 'conversations' do |g|
|
|
5
6
|
g.desc 'Archives a conversation.'
|
|
6
7
|
g.long_desc %( Archives a conversation. )
|
|
@@ -50,6 +51,7 @@ command 'conversations' do |g|
|
|
|
50
51
|
g.command 'info' do |c|
|
|
51
52
|
c.flag 'channel', desc: 'Conversation ID to learn more about.'
|
|
52
53
|
c.flag 'include_locale', desc: 'Set this to true to receive the locale for this conversation. Defaults to false.'
|
|
54
|
+
c.flag 'include_num_members', desc: 'Set to true to include the member count for the specified conversation. Defaults to false.'
|
|
53
55
|
c.action do |_global_options, options, _args|
|
|
54
56
|
puts JSON.dump($client.conversations_info(options))
|
|
55
57
|
end
|
|
@@ -59,7 +61,7 @@ command 'conversations' do |g|
|
|
|
59
61
|
g.long_desc %( Invites users to a channel. )
|
|
60
62
|
g.command 'invite' do |c|
|
|
61
63
|
c.flag 'channel', desc: 'The ID of the public or private channel to invite user(s) to.'
|
|
62
|
-
c.flag 'users', desc: 'A comma separated list of user IDs. Up to
|
|
64
|
+
c.flag 'users', desc: 'A comma separated list of user IDs. Up to 1000 users may be listed.'
|
|
63
65
|
c.action do |_global_options, options, _args|
|
|
64
66
|
puts JSON.dump($client.conversations_invite(options))
|
|
65
67
|
end
|
data/bin/commands/dialog.rb
CHANGED
data/bin/commands/dnd.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
|
-
desc '
|
|
4
|
+
desc 'Dnd methods.'
|
|
4
5
|
command 'dnd' do |g|
|
|
5
6
|
g.desc "Ends the current user's Do Not Disturb session immediately."
|
|
6
7
|
g.long_desc %( Ends the current user's Do Not Disturb session immediately. )
|
|
@@ -36,8 +37,8 @@ command 'dnd' do |g|
|
|
|
36
37
|
end
|
|
37
38
|
end
|
|
38
39
|
|
|
39
|
-
g.desc 'Retrieves the Do Not Disturb status for users on a team.'
|
|
40
|
-
g.long_desc %( Retrieves the Do Not Disturb status for users on a team. )
|
|
40
|
+
g.desc 'Retrieves the Do Not Disturb status for up to 50 users on a team.'
|
|
41
|
+
g.long_desc %( Retrieves the Do Not Disturb status for up to 50 users on a team. )
|
|
41
42
|
g.command 'teamInfo' do |c|
|
|
42
43
|
c.flag 'users', desc: 'Comma-separated list of users to fetch Do Not Disturb status for.'
|
|
43
44
|
c.action do |_global_options, options, _args|
|
data/bin/commands/emoji.rb
CHANGED
data/bin/commands/files.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
|
-
desc '
|
|
4
|
+
desc 'Files methods.'
|
|
4
5
|
command 'files' do |g|
|
|
5
6
|
g.desc 'Deletes a file.'
|
|
6
7
|
g.long_desc %( Deletes a file. )
|
|
@@ -37,21 +38,10 @@ command 'files' do |g|
|
|
|
37
38
|
g.long_desc %( Lists & filters team files. )
|
|
38
39
|
g.command 'list' do |c|
|
|
39
40
|
c.flag 'channel', desc: 'Filter files appearing in a specific channel, indicated by its ID.'
|
|
41
|
+
c.flag 'show_files_hidden_by_limit', desc: 'Show truncated file info for files hidden due to being too old, and the team who owns the file being over the file limit.'
|
|
40
42
|
c.flag 'ts_from', desc: 'Filter files created after this timestamp (inclusive).'
|
|
41
43
|
c.flag 'ts_to', desc: 'Filter files created before this timestamp (inclusive).'
|
|
42
|
-
c.flag 'types', desc: 'Filter files by type
|
|
43
|
-
|
|
44
|
-
all - All files
|
|
45
|
-
spaces - Posts
|
|
46
|
-
snippets - Snippets
|
|
47
|
-
images - Image files
|
|
48
|
-
gdocs - Google docs
|
|
49
|
-
zips - Zip files
|
|
50
|
-
pdfs - PDF files
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
You can pass multiple values in the types argument, like types=spaces,snippets.The default value is all, which does not filter the list.
|
|
54
|
-
.'
|
|
44
|
+
c.flag 'types', desc: 'Filter files by type (see below). You can pass multiple values in the types argument, like types=spaces,snippets.The default value is all, which does not filter the list.'
|
|
55
45
|
c.flag 'user', desc: 'Filter files created by a single user.'
|
|
56
46
|
c.action do |_global_options, options, _args|
|
|
57
47
|
puts JSON.dump($client.files_list(options))
|
|
@@ -1,17 +1,8 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
4
|
desc 'FilesComments methods.'
|
|
4
5
|
command 'files_comments' do |g|
|
|
5
|
-
g.desc 'Add a comment to an existing file.'
|
|
6
|
-
g.long_desc %( Add a comment to an existing file. )
|
|
7
|
-
g.command 'add' do |c|
|
|
8
|
-
c.flag 'comment', desc: 'Text of the comment to add.'
|
|
9
|
-
c.flag 'file', desc: 'File to add a comment to.'
|
|
10
|
-
c.action do |_global_options, options, _args|
|
|
11
|
-
puts JSON.dump($client.files_comments_add(options))
|
|
12
|
-
end
|
|
13
|
-
end
|
|
14
|
-
|
|
15
6
|
g.desc 'Deletes an existing comment on a file.'
|
|
16
7
|
g.long_desc %( Deletes an existing comment on a file. )
|
|
17
8
|
g.command 'delete' do |c|
|
|
@@ -21,15 +12,4 @@ command 'files_comments' do |g|
|
|
|
21
12
|
puts JSON.dump($client.files_comments_delete(options))
|
|
22
13
|
end
|
|
23
14
|
end
|
|
24
|
-
|
|
25
|
-
g.desc 'Edit an existing file comment.'
|
|
26
|
-
g.long_desc %( Edit an existing file comment. )
|
|
27
|
-
g.command 'edit' do |c|
|
|
28
|
-
c.flag 'comment', desc: 'Text of the comment to edit.'
|
|
29
|
-
c.flag 'file', desc: 'File containing the comment to edit.'
|
|
30
|
-
c.flag 'id', desc: 'The comment to edit.'
|
|
31
|
-
c.action do |_global_options, options, _args|
|
|
32
|
-
puts JSON.dump($client.files_comments_edit(options))
|
|
33
|
-
end
|
|
34
|
-
end
|
|
35
15
|
end
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This file was auto-generated by lib/tasks/web.rake
|
|
3
|
+
|
|
4
|
+
desc 'FilesRemote methods.'
|
|
5
|
+
command 'files_remote' do |g|
|
|
6
|
+
g.desc 'Adds a file from a remote service'
|
|
7
|
+
g.long_desc %( Adds a file from a remote service )
|
|
8
|
+
g.command 'add' do |c|
|
|
9
|
+
c.flag 'external_id', desc: 'Creator defined GUID for the file.'
|
|
10
|
+
c.flag 'external_url', desc: 'URL of the remote file.'
|
|
11
|
+
c.flag 'title', desc: 'Title of the file being shared.'
|
|
12
|
+
c.flag 'filetype', desc: 'type of file.'
|
|
13
|
+
c.flag 'indexable_file_contents', desc: 'A text file (txt, pdf, doc, etc.) containing textual search terms that are used to improve discovery of the remote file.'
|
|
14
|
+
c.flag 'preview_image', desc: 'Preview of the document via multipart/form-data.'
|
|
15
|
+
c.action do |_global_options, options, _args|
|
|
16
|
+
puts JSON.dump($client.files_remote_add(options))
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
g.desc 'Retrieve information about a remote file added to Slack'
|
|
21
|
+
g.long_desc %( Retrieve information about a remote file added to Slack )
|
|
22
|
+
g.command 'info' do |c|
|
|
23
|
+
c.flag 'external_id', desc: 'Creator defined GUID for the file.'
|
|
24
|
+
c.flag 'file', desc: 'Specify a file by providing its ID.'
|
|
25
|
+
c.action do |_global_options, options, _args|
|
|
26
|
+
puts JSON.dump($client.files_remote_info(options))
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
g.desc 'Retrieve information about a remote file added to Slack'
|
|
31
|
+
g.long_desc %( Retrieve information about a remote file added to Slack )
|
|
32
|
+
g.command 'list' do |c|
|
|
33
|
+
c.flag 'channel', desc: 'Filter files appearing in a specific channel, indicated by its ID.'
|
|
34
|
+
c.flag 'cursor', desc: "Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first 'page' of the collection. See pagination for more detail."
|
|
35
|
+
c.flag 'limit', desc: 'The maximum number of items to return.'
|
|
36
|
+
c.flag 'ts_from', desc: 'Filter files created after this timestamp (inclusive).'
|
|
37
|
+
c.flag 'ts_to', desc: 'Filter files created before this timestamp (inclusive).'
|
|
38
|
+
c.action do |_global_options, options, _args|
|
|
39
|
+
puts JSON.dump($client.files_remote_list(options))
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
g.desc 'Remove a remote file.'
|
|
44
|
+
g.long_desc %( Remove a remote file. )
|
|
45
|
+
g.command 'remove' do |c|
|
|
46
|
+
c.flag 'external_id', desc: 'Creator defined GUID for the file.'
|
|
47
|
+
c.flag 'file', desc: 'Specify a file by providing its ID.'
|
|
48
|
+
c.action do |_global_options, options, _args|
|
|
49
|
+
puts JSON.dump($client.files_remote_remove(options))
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
g.desc 'Share a remote file into a channel.'
|
|
54
|
+
g.long_desc %( Share a remote file into a channel. )
|
|
55
|
+
g.command 'share' do |c|
|
|
56
|
+
c.flag 'channels', desc: 'Comma-separated list of channel IDs where the file will be shared.'
|
|
57
|
+
c.flag 'external_id', desc: 'Creator defined GUID for the file.'
|
|
58
|
+
c.flag 'file', desc: 'Specify a file by providing its ID.'
|
|
59
|
+
c.action do |_global_options, options, _args|
|
|
60
|
+
puts JSON.dump($client.files_remote_share(options))
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
g.desc 'Updates an existing remote file.'
|
|
65
|
+
g.long_desc %( Updates an existing remote file. )
|
|
66
|
+
g.command 'update' do |c|
|
|
67
|
+
c.flag 'external_id', desc: 'Creator defined GUID for the file.'
|
|
68
|
+
c.flag 'external_url', desc: 'URL of the remote file.'
|
|
69
|
+
c.flag 'file', desc: 'Specify a file by providing its ID.'
|
|
70
|
+
c.flag 'filetype', desc: 'type of file.'
|
|
71
|
+
c.flag 'indexable_file_contents', desc: 'File containing contents that can be used to improve searchability for the remote file.'
|
|
72
|
+
c.flag 'preview_image', desc: 'Preview of the document via multipart/form-data.'
|
|
73
|
+
c.flag 'title', desc: 'Title of the file being shared.'
|
|
74
|
+
c.action do |_global_options, options, _args|
|
|
75
|
+
puts JSON.dump($client.files_remote_update(options))
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
end
|
data/bin/commands/groups.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
|
-
desc
|
|
4
|
+
desc 'Groups methods.'
|
|
4
5
|
command 'groups' do |g|
|
|
5
6
|
g.desc 'Archives a private channel.'
|
|
6
7
|
g.long_desc %( Archives a private channel. )
|
data/bin/commands/im.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
1
2
|
# This file was auto-generated by lib/tasks/web.rake
|
|
2
3
|
|
|
3
|
-
desc '
|
|
4
|
+
desc 'Im methods.'
|
|
4
5
|
command 'im' do |g|
|
|
5
6
|
g.desc 'Close a direct message channel.'
|
|
6
7
|
g.long_desc %( Close a direct message channel. )
|
data/bin/commands/migration.rb
CHANGED