-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsubprocess.gemspec
More file actions
24 lines (21 loc) · 926 Bytes
/
subprocess.gemspec
File metadata and controls
24 lines (21 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'subprocess/version'
Gem::Specification.new do |s|
s.name = "subprocess"
s.version = Subprocess::VERSION
s.authors = ["Carl Jackson", "Evan Broder", "Nelson Elhage",
"Andy Brody", "Andreas Fuchs"]
s.email = %W{carl evan nelhage andy asf}.map{|who| "#{who}@stripe.com"}
s.homepage = "https://github.com/stripe/subprocess"
s.summary = "A port of Python's subprocess module to Ruby"
s.description = "Control and communicate with spawned processes"
s.license = "MIT"
s.files = Dir.glob("{lib,rbi}/**/*") + %w(README.md)
s.add_development_dependency "minitest", "~> 5.0"
s.add_development_dependency "rake"
s.add_development_dependency "pry"
s.add_development_dependency "sord"
end