File: async-process.gemspec

package info (click to toggle)
ruby-async-process 1.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 172 kB
  • sloc: ruby: 129; makefile: 4
file content (27 lines) | stat: -rw-r--r-- 731 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

require_relative "lib/async/process/version"

Gem::Specification.new do |spec|
	spec.name = "async-process"
	spec.version = Async::Process::VERSION
	
	spec.summary = "Asynchronous process spawning."
	spec.authors = ["Samuel Williams", "Joe Khoobyar"]
	spec.license = "MIT"
	
	spec.cert_chain  = ["release.cert"]
	spec.signing_key = File.expand_path("~/.gem/release.pem")
	
	spec.homepage = "https://github.com/socketry/async-process"
	
	spec.metadata = {
		"source_code_uri" => "https://github.com/socketry/async-process.git",
	}
	
	spec.files = Dir.glob(["{lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
	
	spec.required_ruby_version = ">= 3.1"
	
	spec.add_dependency "async", "~> 2.0"
end