bin/slack-messaging in slack_messaging-3.1.0 vs bin/slack-messaging in slack_messaging-3.1.1

- old
+ new

@@ -19,22 +19,23 @@ DOCUMENTATION For documentation and help in setting up your configuration files, see Slack Messaging's GitHub repo: https://github.com/emmahsax/slack_messaging " +pre do |global, _command, _options, _args| + SlackMessaging::Config.load(global[:config]) + true +end + desc 'Prints a variety of messages to Slack' command 'send' do |c| - pre do |global, _command, _options, _args| - SlackMessaging::Config.load(global[:config]) - true - end - c.action do |_global_options, options, args| SlackMessaging::Send.execute(args, options) end end desc 'Sets up a Slack Messaging config file at ~/.slack_messaging.yml' +skips_pre command 'setup' do |c| c.action do SlackMessaging::Setup.execute end end