From 5b8facabdb0dd2d130092354780939ed9f19b7e5 Mon Sep 17 00:00:00 2001 From: pivotal-cloudplanner Date: Fri, 1 Mar 2013 17:36:57 -0800 Subject: [PATCH] Include license type in gemspec for auditing tools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We're using http://licenseaudit.pivotallabs.com/ to audit our gem dependencies and it works a lot better when the license is listed in the gemspec --- simple_form.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/simple_form.gemspec b/simple_form.gemspec index 623cb6d4..be1f2da1 100644 --- a/simple_form.gemspec +++ b/simple_form.gemspec @@ -11,6 +11,7 @@ Gem::Specification.new do |s| s.homepage = "https://github.com/plataformatec/simple_form" s.description = "Forms made easy!" s.authors = ['José Valim', 'Carlos Antônio', 'Rafael França'] + s.license = "MIT" s.files = Dir["CHANGELOG.md", "MIT-LICENSE", "README.md", "lib/**/*"] s.test_files = Dir["test/**/*.rb"]