daemon_controller 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.asc +7 -7
- data/LICENSE.txt +1 -1
- data/README.markdown +23 -1
- data/daemon_controller.gemspec +3 -15
- data/debian.template/changelog +5 -0
- data/debian.template/compat +1 -0
- data/debian.template/control.template +17 -0
- data/debian.template/copyright +24 -0
- data/debian.template/rules +5 -0
- data/debian.template/source/format +1 -0
- data/lib/daemon_controller/packaging.rb +30 -0
- data/lib/daemon_controller/version.rb +1 -1
- metadata +11 -4
- metadata.gz.asc +7 -7
data.tar.gz.asc
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
|
3
3
|
Comment: GPGTools - http://gpgtools.org
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
=
|
5
|
+
iQEcBAABAgAGBQJRgSpCAAoJECrHRaUKISqM438IAIs0kpvRRqyeSULNODaRkiSN
|
6
|
+
EoKv19E++hFRJsnZEUu7odnpIBP3qH6T4chIM02KbGblxxWnkbRUfnh75H8VTXvg
|
7
|
+
TgMLL/b1nzPuXxFTQQlWANby9y5hKTcLN+fsN/T9EAsRtz5GiV/eBo09u+uKQQSS
|
8
|
+
XUcdXya32gKDMLPrbNcYLE+IrxQo4e6IEB3/cgzep4tX4Bg1V+r4RI+EsfhaBdjN
|
9
|
+
FrhYre72LZnPph1KmJE0d8iDTqcK51BsIYn1f86EcEk9IkBLeW5GmeQ4fiaZ3Xyw
|
10
|
+
d7ysRQ7cANKYU+QWeMKMq74Ia5SabgOo/6psWjjfW2ZKcBzvw7Yb8zT7c12wkks=
|
11
|
+
=0fpK
|
12
12
|
-----END PGP SIGNATURE-----
|
data/LICENSE.txt
CHANGED
data/README.markdown
CHANGED
@@ -25,10 +25,32 @@ It provides the following functionality:
|
|
25
25
|
* Stopping daemons.
|
26
26
|
* Checking whether a daemon is running.
|
27
27
|
|
28
|
-
## Installation
|
28
|
+
## Installation with RubyGems
|
29
29
|
|
30
30
|
gem install daemon_controller
|
31
31
|
|
32
|
+
This gem is signed using PGP with the [Phusion Software Signing key](http://www.phusion.nl/about/gpg). That key in turn is signed by [the rubygems-openpgp Certificate Authority](http://www.rubygems-openpgp-ca.org/).
|
33
|
+
|
34
|
+
You can verify the authenticity of the gem by following [The Complete Guide to Verifying Gems with rubygems-openpgp](http://www.rubygems-openpgp-ca.org/blog/the-complete-guide-to-verifying-gems-with-rubygems-openpgp.html).
|
35
|
+
|
36
|
+
## Installation on Ubuntu
|
37
|
+
|
38
|
+
Use our [PPA](https://launchpad.net/~phusion.nl/+archive/misc):
|
39
|
+
|
40
|
+
sudo add-apt-repository ppa:phusion.nl/misc
|
41
|
+
sudo apt-get update
|
42
|
+
sudo apt-get install daemon-controller-ruby
|
43
|
+
|
44
|
+
## Installation on Debian
|
45
|
+
|
46
|
+
Our Ubuntu Lucid packages are compatible with Debian 6.
|
47
|
+
|
48
|
+
sudo sh -c 'echo deb http://ppa.launchpad.net/phusion.nl/misc/ubuntu lucid main > /etc/apt/sources.list.d/phusion-misc.list'
|
49
|
+
sudo sh -c 'echo deb-src http://ppa.launchpad.net/phusion.nl/misc/ubuntu lucid main >> /etc/apt/sources.list.d/phusion-misc.list'
|
50
|
+
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 2AC745A50A212A8C
|
51
|
+
sudo apt-get update
|
52
|
+
sudo apt-get install daemon-controller-ruby
|
53
|
+
|
32
54
|
## Resources
|
33
55
|
|
34
56
|
* [Website](https://github.com/FooBarWidget/daemon_controller)
|
data/daemon_controller.gemspec
CHANGED
@@ -1,28 +1,16 @@
|
|
1
1
|
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/lib"))
|
2
2
|
require 'daemon_controller/version'
|
3
|
+
require 'daemon_controller/packaging'
|
3
4
|
|
4
5
|
Gem::Specification.new do |s|
|
5
6
|
s.name = "daemon_controller"
|
6
7
|
s.version = DaemonController::VERSION_STRING
|
7
|
-
s.date = "2013-03-11"
|
8
8
|
s.summary = "A library for implementing daemon management capabilities"
|
9
9
|
s.email = "software-signing@phusion.nl"
|
10
10
|
s.homepage = "https://github.com/FooBarWidget/daemon_controller"
|
11
11
|
s.description = "A library for robust daemon management."
|
12
|
+
s.license = "MIT"
|
12
13
|
s.has_rdoc = true
|
13
14
|
s.authors = ["Hongli Lai"]
|
14
|
-
|
15
|
-
s.files = [
|
16
|
-
"README.markdown", "LICENSE.txt", "daemon_controller.gemspec",
|
17
|
-
"lib/daemon_controller.rb",
|
18
|
-
"lib/daemon_controller/lock_file.rb",
|
19
|
-
"lib/daemon_controller/spawn.rb",
|
20
|
-
"lib/daemon_controller/version.rb",
|
21
|
-
"spec/test_helper.rb",
|
22
|
-
"spec/daemon_controller_spec.rb",
|
23
|
-
"spec/echo_server.rb",
|
24
|
-
"spec/unresponsive_daemon.rb",
|
25
|
-
"spec/run_echo_server"
|
26
|
-
]
|
27
|
-
s.license = "MIT"
|
15
|
+
s.files = Dir[*DAEMON_CONTROLLER_FILES]
|
28
16
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
7
|
@@ -0,0 +1,17 @@
|
|
1
|
+
Source: daemon-controller-ruby
|
2
|
+
Section: text
|
3
|
+
Priority: extra
|
4
|
+
Maintainer: Hongli Lai <hongli@phusion.nl>
|
5
|
+
Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.0~)
|
6
|
+
Standards-Version: 3.9.3
|
7
|
+
Homepage: https://github.com/FooBarWidget/daemon_controller
|
8
|
+
Vcs-Git: git://github.com/FooBarWidget/daemon_controller.git
|
9
|
+
Vcs-Browser: https://github.com/FooBarWidget/daemon_controller
|
10
|
+
XS-Ruby-Versions: all
|
11
|
+
|
12
|
+
Package: daemon-controller-ruby
|
13
|
+
Architecture: all
|
14
|
+
XB-Ruby-Versions: ${ruby:Versions}
|
15
|
+
Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter
|
16
|
+
Description: Library for robust daemon management
|
17
|
+
Library which implementing daemon management capabilities.
|
@@ -0,0 +1,24 @@
|
|
1
|
+
Format: http://dep.debian.net/deps/dep5
|
2
|
+
Upstream-Name: daemon_controller
|
3
|
+
Source: https://github.com/FooBarWidget/daemon_controller
|
4
|
+
|
5
|
+
Files: *
|
6
|
+
Copyright: 2008-2013 Phusion
|
7
|
+
License: MIT
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
9
|
+
of this software and associated documentation files (the "Software"), to deal
|
10
|
+
in the Software without restriction, including without limitation the rights
|
11
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
12
|
+
copies of the Software, and to permit persons to whom the Software is
|
13
|
+
furnished to do so, subject to the following conditions:
|
14
|
+
.
|
15
|
+
The above copyright notice and this permission notice shall be included in
|
16
|
+
all copies or substantial portions of the Software.
|
17
|
+
.
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
19
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
20
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
21
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
22
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
24
|
+
THE SOFTWARE.
|
@@ -0,0 +1 @@
|
|
1
|
+
3.0 (quilt)
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# daemon_controller, library for robust daemon management
|
2
|
+
# Copyright (c) 2013 Phusion
|
3
|
+
#
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
|
+
# of this software and associated documentation files (the "Software"), to deal
|
6
|
+
# in the Software without restriction, including without limitation the rights
|
7
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
+
# copies of the Software, and to permit persons to whom the Software is
|
9
|
+
# furnished to do so, subject to the following conditions:
|
10
|
+
#
|
11
|
+
# The above copyright notice and this permission notice shall be included in
|
12
|
+
# all copies or substantial portions of the Software.
|
13
|
+
#
|
14
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20
|
+
# THE SOFTWARE.
|
21
|
+
|
22
|
+
DAEMON_CONTROLLER_FILES = [
|
23
|
+
"README.markdown", "LICENSE.txt", "daemon_controller.gemspec",
|
24
|
+
"lib/**/*.rb",
|
25
|
+
"debian.template/**/*",
|
26
|
+
"spec/*.rb",
|
27
|
+
"spec/run_echo_server"
|
28
|
+
]
|
29
|
+
|
30
|
+
DAEMON_CONTROLLER_DEBIAN_EXCLUDE_FILES = []
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: daemon_controller
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-05-01 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: A library for robust daemon management.
|
15
15
|
email: software-signing@phusion.nl
|
@@ -20,13 +20,20 @@ files:
|
|
20
20
|
- README.markdown
|
21
21
|
- LICENSE.txt
|
22
22
|
- daemon_controller.gemspec
|
23
|
-
- lib/daemon_controller.rb
|
24
23
|
- lib/daemon_controller/lock_file.rb
|
24
|
+
- lib/daemon_controller/packaging.rb
|
25
25
|
- lib/daemon_controller/spawn.rb
|
26
26
|
- lib/daemon_controller/version.rb
|
27
|
-
-
|
27
|
+
- lib/daemon_controller.rb
|
28
|
+
- debian.template/changelog
|
29
|
+
- debian.template/compat
|
30
|
+
- debian.template/control.template
|
31
|
+
- debian.template/copyright
|
32
|
+
- debian.template/rules
|
33
|
+
- debian.template/source/format
|
28
34
|
- spec/daemon_controller_spec.rb
|
29
35
|
- spec/echo_server.rb
|
36
|
+
- spec/test_helper.rb
|
30
37
|
- spec/unresponsive_daemon.rb
|
31
38
|
- spec/run_echo_server
|
32
39
|
homepage: https://github.com/FooBarWidget/daemon_controller
|
metadata.gz.asc
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
|
3
3
|
Comment: GPGTools - http://gpgtools.org
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
=
|
5
|
+
iQEcBAABAgAGBQJRgSpCAAoJECrHRaUKISqMVOYIAJR1oJUuz305Qx3xa6msfave
|
6
|
+
Zs0vw+32Ru3ig56y9LtivtgMN4j2UZf1SyYrICGczQ05asq+Gdh7efWfGujZ4cBu
|
7
|
+
BLAt4oyYl7Gd16c97uR2bxGm5hA/sSyNojL1gtdnq+NUW+jCx8V3Wa3iTNO8vWkS
|
8
|
+
hg2mekGopluDSDCQJErf5+xarhOymcIdc0NnEfoAtizUDmw7IdB1ve+YEfS5qqYn
|
9
|
+
IUV7eW8GwK2J/A9vmIr05AA5cH35WTeNq+Kzl5TE3BKFkGWl8rnwq4Dut8K9YM/D
|
10
|
+
xeSOnFzKvkqetc1OHHWP+t/wA1ajQPIp+JnR0cddCPdui5sP3PG6O5/vkW+jb/U=
|
11
|
+
=tFdK
|
12
12
|
-----END PGP SIGNATURE-----
|