mwotton-daemons 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mwotton-daemons
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.11
5
+ platform: ruby
6
+ authors:
7
+ - Thomas Uehlinger
8
+ autorequire: daemons
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-08-26 00:00:00 +10:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: 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.
17
+ email: th.uehlinger@gmx.ch
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README
24
+ - Releases
25
+ - TODO
26
+ files:
27
+ - Rakefile
28
+ - Releases
29
+ - TODO
30
+ - README
31
+ - LICENSE
32
+ - setup.rb
33
+ - lib/daemons.rb
34
+ - lib/daemons/cmdline.rb
35
+ - lib/daemons/exceptions.rb
36
+ - lib/daemons/daemonize.rb
37
+ - lib/daemons/pidfile.rb
38
+ - lib/daemons/monitor.rb
39
+ - lib/daemons/application_group.rb
40
+ - lib/daemons/controller.rb
41
+ - lib/daemons/pid.rb
42
+ - lib/daemons/pidmem.rb
43
+ - lib/daemons/application.rb
44
+ - examples/run/ctrl_exec.rb
45
+ - examples/run/ctrl_exit.rb
46
+ - examples/run/ctrl_multiple.rb
47
+ - examples/run/myserver_crashing.rb.output
48
+ - examples/run/ctrl_normal.rb
49
+ - examples/run/ctrl_proc_multiple.rb
50
+ - examples/run/ctrl_monitor.rb
51
+ - examples/run/myserver.rb
52
+ - examples/run/myserver_crashing.rb
53
+ - examples/run/ctrl_proc.rb
54
+ - examples/run/ctrl_proc.rb.output
55
+ - examples/run/ctrl_proc_multiple.rb.output
56
+ - examples/run/ctrl_optionparser.rb
57
+ - examples/run/ctrl_ontop.rb
58
+ - examples/run/myserver_exiting.rb
59
+ - examples/run/ctrl_crash.rb
60
+ - examples/run/ctrl_proc_simple.rb
61
+ - examples/run/ctrl_keep_pid_files.rb
62
+ - examples/call/call_monitor.rb
63
+ - examples/call/call.rb
64
+ - examples/daemonize/daemonize.rb
65
+ has_rdoc: true
66
+ homepage: http://daemons.rubyforge.org
67
+ licenses: []
68
+
69
+ post_install_message:
70
+ rdoc_options: []
71
+
72
+ require_paths:
73
+ - lib
74
+ required_ruby_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: "0"
79
+ version:
80
+ required_rubygems_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: "0"
85
+ version:
86
+ requirements: []
87
+
88
+ rubyforge_project: daemons
89
+ rubygems_version: 1.3.5
90
+ signing_key:
91
+ specification_version: 2
92
+ summary: A toolkit to create and control daemons in different ways
93
+ test_files: []
94
+