fedux-org/proxy_pac_rb

View on GitHub
lib/proxy_pac_rb/cli/compress.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: utf-8
# frozen_string_literal: true
module ProxyPacRb
  module Cli
    # Compress things
    class Compress < Thor
      register(CompressProxyPac, 'proxy_pac', 'proxy_pac', 'Compress proxy pac')

      default_command :proxy_pac
    end
  end
end