aboutsummaryrefslogtreecommitdiffstats
path: root/bundler.gemspec
diff options
context:
space:
mode:
authorAndrey Korobkov <korobkov@fryxell.info>2016-10-31 19:26:28 +0400
committerAndrey Korobkov <korobkov@fryxell.info>2016-11-01 23:57:39 +0400
commit2238385731ce0477fdd5a66188ded4420f420f21 (patch)
treea55b5929ec4380a87814728687163c09060d9cf6 /bundler.gemspec
parentc68d4af2adc95e552a1cf8293216531cc93611f8 (diff)
downloadbundler-2238385731ce0477fdd5a66188ded4420f420f21.tar.gz
change license specification in gemspec
for compatibility with license_finder gem, allowing automatic license checks. Bundler already proposes the same format in it's newgem.gemspec template: https://github.com/bundler/bundler/blob/master/lib/bundler/templates/newgem/newgem.gemspec.tt#L16 Let use it for bundler itself too.
Diffstat (limited to 'bundler.gemspec')
-rw-r--r--bundler.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundler.gemspec b/bundler.gemspec
index f67c538f..818bee48 100644
--- a/bundler.gemspec
+++ b/bundler.gemspec
@@ -7,7 +7,7 @@ require "bundler/version"
Gem::Specification.new do |s|
s.name = "bundler"
s.version = Bundler::VERSION
- s.licenses = ["MIT"]
+ s.license = "MIT"
s.authors = ["André Arko", "Samuel Giddins"]
s.email = ["team@bundler.io"]
s.homepage = "http://bundler.io"