Sha256: 21b35933ab7bbf2acf51667e5b4023e07a39d5939d2cd817d123d9dffc84dd5b
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
#!/usr/bin/env ruby require 'gli' require 'slack_ruby_client' include GLI::App program_desc 'Slack client.' default_command :help switch %i[d debug], desc: 'Enable debug-level logging.', default_value: false flag [:t, 'slack-api-token'], desc: 'Slack API token.', default_value: ENV['SLACK_API_TOKEN'] flag ['vcr-cassette-name'], desc: 'Offline VCR cassette.' pre do |global_options, _command, options, _args| # global Slack configuration Slack.config.token = global_options['slack-api-token'] help_now! 'Set Slack API token via --slack-api-token or SLACK_API_TOKEN.' unless Slack.config.token && !Slack.config.token.empty? if global_options['debug'] require 'logger' logger = Logger.new(STDOUT) logger.level = Logger::DEBUG Slack::Web::Client.config.logger = logger end $client = Slack::Web::Client.new # Offline VCR cassette if global_options['vcr-cassette-name'] require 'webmock' WebMock.enable! require 'vcr' VCR.configure do |config| config.cassette_library_dir = 'spec/fixtures/slack' config.hook_into :webmock config.default_cassette_options = { record: :new_episodes } end VCR.insert_cassette global_options['vcr-cassette-name'] end # remove any nil values from options options.compact! true end $LOAD_PATH.push File.expand_path(__dir__) require 'commands' exit run(ARGV)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-2.0.0 | bin/slack |