Fix sprockets.gemspec to include MIT-LICENSE

The original License should be included in all packages of shoulda-matchers. The current gemspec does so by including "MIT-LICENSE"-File which doesn't exist. This commit fixes that referencing the "LICENSE"-File.
This commit is contained in:
compliance-bot 2020-10-10 05:00:28 -07:00 committed by Elliot Winkler
parent 256d3b5ac9
commit 3ad89431f1
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ Gem::Specification.new do |s|
'source_code_uri' => 'https://github.com/thoughtbot/shoulda-matchers',
}
s.files = Dir['{docs,lib}/**/*', 'README.md', 'MIT-LICENSE', 'shoulda-matchers.gemspec']
s.files = Dir['{docs,lib}/**/*', 'README.md', 'LICENSE', 'shoulda-matchers.gemspec']
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.4.0'