forked from Shopify/maintenance_tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add license to gem metadata and contents
Rakefile is not necessary for users of the gem.
- Loading branch information
1 parent
a030de8
commit 3fb683b
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,14 +7,15 @@ Gem::Specification.new do |spec| | |
spec.email = "[email protected]" | ||
spec.homepage = "https://github.com/Shopify/maintenance_tasks" | ||
spec.summary = "A Rails engine for queuing and managing maintenance tasks" | ||
spec.license = "MIT" | ||
|
||
spec.metadata = { | ||
"source_code_uri" => | ||
"https://github.com/Shopify/maintenance_tasks/tree/v#{spec.version}", | ||
"allowed_push_host" => "https://rubygems.org", | ||
} | ||
|
||
spec.files = Dir["{app,config,db,lib}/**/*", "Rakefile", "README.md"] | ||
spec.files = Dir["{app,config,db,lib}/**/*", "LICENSE.md", "README.md"] | ||
spec.bindir = "exe" | ||
spec.executables = ["maintenance_tasks"] | ||
|
||
|