forked from adamcooke/procodile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocodile.gemspec
More file actions
18 lines (18 loc) 路 832 Bytes
/
Copy pathprocodile.gemspec
File metadata and controls
18 lines (18 loc) 路 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require_relative './lib/procodile/version'
Gem::Specification.new do |s|
s.name = "procodile"
s.description = %q{A sophisticated process manager for applications running on Linux & macOS.}
s.summary = %q{This gem will help you run processes from a Procfile on Linux/macOS machines in the background or the foreground.}
s.homepage = "https://github.com/adamcooke/procodile"
s.version = Procodile::VERSION
s.files = Dir.glob("{lib,bin}/**/*")
s.require_paths = ["lib"]
s.authors = ["Adam Cooke"]
s.email = ["me@adamcooke.io"]
s.licenses = ['MIT']
s.cert_chain = ['certs/adamcooke.pem']
s.signing_key = File.expand_path("~/.gem/signing-key.pem") if $0 =~ /gem\z/
s.bindir = "bin"
s.executables << 'procodile'
s.add_runtime_dependency 'json'
end