Codebase list ruby-parallel / run/6eb92f13-e6a2-4ed5-a33a-4d38a8f1213b/upstream parallel.gemspec
run/6eb92f13-e6a2-4ed5-a33a-4d38a8f1213b/upstream

Tree @run/6eb92f13-e6a2-4ed5-a33a-4d38a8f1213b/upstream (Download .tar.gz)

parallel.gemspec @run/6eb92f13-e6a2-4ed5-a33a-4d38a8f1213b/upstreamraw · history · blame

# frozen_string_literal: true
name = "parallel"
$LOAD_PATH << File.expand_path('lib', __dir__)
require "#{name}/version"

Gem::Specification.new name, Parallel::VERSION do |s|
  s.summary = "Run any kind of code in parallel processes"
  s.authors = ["Michael Grosser"]
  s.email = "michael@grosser.it"
  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 = `git ls-files lib MIT-LICENSE.txt`.split("\n")
  s.license = "MIT"
  s.required_ruby_version = '>= 2.5'
end