diff options
author | Homu <homu@barosl.com> | 2016-11-04 01:19:31 +0900 |
---|---|---|
committer | Homu <homu@barosl.com> | 2016-11-04 01:19:31 +0900 |
commit | 6794c39998d38b36a62cc51f703d6fd05011d2a6 (patch) | |
tree | a55b5929ec4380a87814728687163c09060d9cf6 | |
parent | c68d4af2adc95e552a1cf8293216531cc93611f8 (diff) | |
parent | 2238385731ce0477fdd5a66188ded4420f420f21 (diff) | |
download | bundler-6794c39998d38b36a62cc51f703d6fd05011d2a6.tar.gz |
Auto merge of #5144 - korobkov:master, r=segiddins
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.
-rw-r--r-- | bundler.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundler.gemspec b/bundler.gemspec index f67c538fd6..818bee4819 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" |