Skip to content

Commit

Permalink
Fix sprockets.gemspec to include MIT-LICENSE
Browse files Browse the repository at this point in the history
The original License should be included in all packages of sprockets. The current gemspec does so by including "LICENSE"-File which doesn't exist. This commit fixes that referencing the "MIT-LICENSE"-File.
  • Loading branch information
compliance-bot committed Oct 10, 2020
1 parent dba2802 commit 751f2f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sprockets.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.description = "Sprockets is a Rack-based asset packaging system that concatenates and serves JavaScript, CoffeeScript, CSS, Sass, and SCSS."
s.license = "MIT"

s.files = Dir["README.md", "CHANGELOG.md", "LICENSE", "lib/**/*.rb"]
s.files = Dir["README.md", "CHANGELOG.md", "MIT-LICENSE", "lib/**/*.rb"]
s.executables = ["sprockets"]

s.add_dependency "rack", "> 1", "< 3"
Expand Down

1 comment on commit 751f2f2

@fly938
Copy link

@fly938 fly938 commented on 751f2f2 Dec 14, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

K

Please sign in to comment.