From 3ced5ec784eef2654b213f80632657603be9182a Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Fri, 27 Dec 2013 13:21:44 -0700 Subject: [PATCH 1/2] add MIT license metadata to gemspec --- github-linguist.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 43f64822..01e7e816 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -5,6 +5,7 @@ Gem::Specification.new do |s| s.authors = "GitHub" s.homepage = "https://github.com/github/linguist" + s.license = "MIT" s.files = Dir['lib/**/*'] s.executables << 'linguist' From 813c150918a275441195da5e612e0b9d0f46bfa2 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Fri, 27 Dec 2013 14:14:04 -0700 Subject: [PATCH 2/2] add description metadata to gemspec --- github-linguist.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 01e7e816..d35523ee 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -2,6 +2,7 @@ Gem::Specification.new do |s| s.name = 'github-linguist' s.version = '2.10.8' s.summary = "GitHub Language detection" + s.description = 'We use this library at GitHub to detect blob languages, highlight code, ignore binary files, suppress generated files in diffs, and generate language breakdown graphs.' s.authors = "GitHub" s.homepage = "https://github.com/github/linguist"