summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-11-04 01:19:31 +0900
committerHomu <homu@barosl.com>2016-11-04 01:19:31 +0900
commit6794c39998d38b36a62cc51f703d6fd05011d2a6 (patch)
treea55b5929ec4380a87814728687163c09060d9cf6
parentc68d4af2adc95e552a1cf8293216531cc93611f8 (diff)
parent2238385731ce0477fdd5a66188ded4420f420f21 (diff)
downloadbundler-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.gemspec2
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"