dblock/slack-ruby-client

View on GitHub
lib/tasks/update.rake

Summary

Maintainability
Test Coverage
# frozen_string_literal: true
namespace :slack do
  namespace :api do
    desc 'Auto-generate automatic portions of the Slack API client.'
    task :update do
      Rake::Task['slack:real_time:api:update'].invoke
      Rake::Task['slack:web:api:update'].invoke
    end
  end
end