From 36a10bea87c8976b73cc6406be31d33f24596189 Mon Sep 17 00:00:00 2001 From: Konrad Weihmann Date: Sat, 13 Feb 2021 16:45:10 +0100 Subject: [PATCH] gemspec: add license metadata to make it accessible via e.g. rubygems.org and usable by compliance tooling Signed-off-by: Konrad Weihmann --- proxifier.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/proxifier.gemspec b/proxifier.gemspec index 30923bb..ff50d1f 100644 --- a/proxifier.gemspec +++ b/proxifier.gemspec @@ -10,6 +10,7 @@ Gem::Specification.new do |s| s.homepage = "https://github.com/samuelkadolph/ruby-proxifier" s.summary = %q{Proxifier is a gem to force ruby to use a proxy.} s.description = %q{Proxifier adds support for HTTP or SOCKS proxies and lets you force TCPSocket to use proxies.} + s.license = "MIT" s.files = Dir["bin/*", "lib/**/*"] + ["LICENSE", "README.md"] s.executables = ["pirb", "pruby"]