Sha256: 718ae08b24218bfe8ab1c44a4740f7855d43a8f90f5cd1ceffd95f18039a3d66
Contents?: true
Size: 609 Bytes
Versions: 4
Compression:
Stored size: 609 Bytes
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake module Slack module Cli class App desc 'Emoji methods.' command 'emoji' do |g| g.desc 'Lists custom emoji for a team.' g.long_desc %( Lists custom emoji for a team. ) g.command 'list' do |c| c.flag 'include_categories', desc: 'Include a list of categories for Unicode emoji and the emoji in each category.' c.action do |_global_options, options, _args| puts JSON.dump(@client.emoji_list(options)) end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-2.4.0 | bin/commands/emoji.rb |
slack-ruby-client-2.3.0 | bin/commands/emoji.rb |
slack-ruby-client-2.2.0 | bin/commands/emoji.rb |
slack-ruby-client-2.1.0 | bin/commands/emoji.rb |