Sha256: 5048f9f828231faf26e2e31a9de494ab25b8fb63cdcce7589bcbfeb1738a8573
Contents?: true
Size: 546 Bytes
Versions: 8
Compression:
Stored size: 546 Bytes
Contents
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__) name = "parallel" 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.files = `git ls-files`.split("\n") s.license = "MIT" key = File.expand_path("~/.ssh/gem-private_key.pem") if File.exist?(key) s.signing_key = key s.cert_chain = ["gem-public_cert.pem"] end end
Version data entries
8 entries across 8 versions & 1 rubygems