Skip to content

Commit

Permalink
Merge pull request #739 from orien/gem-metadata
Browse files Browse the repository at this point in the history
Add project metadata to the gemspec
  • Loading branch information
grosser committed Dec 11, 2019
2 parents d3a5ffc + f14266f commit edff06c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion parallel_tests.gemspec
Expand Up @@ -5,7 +5,13 @@ Gem::Specification.new name, ParallelTests::VERSION do |s|
s.summary = "Run Test::Unit / RSpec / Cucumber / Spinach in parallel"
s.authors = ["Michael Grosser"]
s.email = "michael@grosser.it"
s.homepage = "http://github.com/grosser/#{name}"
s.homepage = "https://github.com/grosser/#{name}"
s.metadata = {
"bug_tracker_uri" => "https://github.com/grosser/#{name}/issues",
"documentation_uri" => "https://github.com/grosser/#{name}/blob/v#{s.version}/Readme.md",
"source_code_uri" => "https://github.com/grosser/#{name}/tree/v#{s.version}",
"wiki_uri" => "https://github.com/grosser/#{name}/wiki",
}
s.files = Dir["{lib,bin}/**/*"] + ["Readme.md"]
s.license = "MIT"
s.executables = ["parallel_spinach", "parallel_cucumber", "parallel_rspec", "parallel_test"]
Expand Down

0 comments on commit edff06c

Please sign in to comment.