forked from thuehlinger/daemons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdaemons.gemspec
More file actions
30 lines (25 loc) · 1.16 KB
/
daemons.gemspec
File metadata and controls
30 lines (25 loc) · 1.16 KB
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
28
29
30
require File.expand_path('../lib/daemons/version', __FILE__)
Gem::Specification.new do |s|
s.name = %q{daemons}
s.version = Daemons::VERSION
s.date = %q{2015-03-08}
s.authors = ["Thomas Uehlinger"]
s.license = "MIT"
s.email = %q{thomas.uehinger@gmail.com}
s.homepage = %q{https://github.com/thuehlinger/daemons}
s.summary = %q{A toolkit to create and control daemons in different ways}
s.description = <<-EOF
Daemons provides an easy way to wrap existing ruby scripts (for example a
self-written server) to be run as a daemon and to be controlled by simple
start/stop/restart commands.
You can also call blocks as daemons and control them from the parent or just
daemonize the current process.
Besides this basic functionality, daemons offers many advanced features like
exception backtracing and logging (in case your ruby script crashes) and
monitoring and automatic restarting of your processes if they crash.
EOF
s.files = `git ls-files README.md LICENSE Releases lib examples`.split
s.add_development_dependency 'rspec', '~> 3.1'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'pry-byebug'
end