bin/commands/pins.rb in slack-ruby-client-0.14.4 vs bin/commands/pins.rb in slack-ruby-client-0.14.5
- old
+ new
@@ -1,31 +1,30 @@
+# frozen_string_literal: true
# This file was auto-generated by lib/tasks/web.rake
desc 'Pins methods.'
command 'pins' do |g|
- g.desc 'This method pins a channel message or group message to a particular channel.'
- g.long_desc %( This method pins a channel message or group message to a particular channel. The channel argument is required and timestamp must also be specified. )
+ g.desc 'Pins an item to a channel.'
+ g.long_desc %( Pins an item to a channel. )
g.command 'add' do |c|
c.flag 'channel', desc: 'Channel to pin the item in.'
- c.flag 'file', desc: 'File to pin.'
- c.flag 'file_comment', desc: 'File comment to pin.'
c.flag 'timestamp', desc: 'Timestamp of the message to pin.'
c.action do |_global_options, options, _args|
puts JSON.dump($client.pins_add(options))
end
end
- g.desc 'This method lists the items pinned to a channel.'
- g.long_desc %( This method lists the items pinned to a channel. )
+ g.desc 'Lists items pinned to a channel.'
+ g.long_desc %( Lists items pinned to a channel. )
g.command 'list' do |c|
c.flag 'channel', desc: 'Channel to get pinned items for.'
c.action do |_global_options, options, _args|
puts JSON.dump($client.pins_list(options))
end
end
- g.desc 'This method un-pins an item (file, file comment, channel message, or group message) from a channel.'
- g.long_desc %( This method un-pins an item (file, file comment, channel message, or group message) from a channel. The channel argument is required and one of file, file_comment, or timestamp must also be specified. )
+ g.desc 'Un-pins an item from a channel.'
+ g.long_desc %( Un-pins an item from a channel. )
g.command 'remove' do |c|
c.flag 'channel', desc: 'Channel where the item is pinned to.'
c.flag 'file', desc: 'File to un-pin.'
c.flag 'file_comment', desc: 'File comment to un-pin.'
c.flag 'timestamp', desc: 'Timestamp of the message to un-pin.'