From 64fe56a9e1b22e8158474375b479e2413e1d686a Mon Sep 17 00:00:00 2001 From: Jordi Massaguer Pla Date: Mon, 28 Jan 2013 13:53:29 +0100 Subject: [PATCH 1/2] add license information to gemspec this way you can get this info from the rubygems.org API --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index dfb85dabca..592ea742c9 100644 --- a/Rakefile +++ b/Rakefile @@ -49,6 +49,7 @@ task :gem do s.authors = ['Jeremy Ashkenas'] s.email = 'jashkenas@gmail.com' s.rubyforge_project = 'coffee-script-source' + s.license = "MIT" end file = File.open("coffee-script-source.gem", "w") From bf4d91dd38488b52bdd411a869a0c62253bcd866 Mon Sep 17 00:00:00 2001 From: Jordi Massaguer Pla Date: Tue, 29 Jan 2013 12:11:45 +0100 Subject: [PATCH 2/2] fix spacing in Rakefile previous commit was not following the right indentation when adding the license field. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 592ea742c9..d90cce3653 100644 --- a/Rakefile +++ b/Rakefile @@ -49,7 +49,7 @@ task :gem do s.authors = ['Jeremy Ashkenas'] s.email = 'jashkenas@gmail.com' s.rubyforge_project = 'coffee-script-source' - s.license = "MIT" + s.license = "MIT" end file = File.open("coffee-script-source.gem", "w")