daemonizer 0.0.8 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +21 -0
- data/README.md +11 -1
- data/ROADMAP +15 -0
- data/VERSION +1 -1
- data/daemonizer.gemspec +6 -3
- metadata +6 -3
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2010, Gleb Pomykalov
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
@@ -27,7 +27,7 @@ possible to describe different background pools there.
|
|
27
27
|
**3. Monitoring**: If child is found dead it will be immediately
|
28
28
|
restored
|
29
29
|
|
30
|
-
**4. Logging** (via [http://log4r.rubyforge.org/]log4r)
|
30
|
+
**4. Logging** (via [http://log4r.rubyforge.org/](log4r))
|
31
31
|
|
32
32
|
Installing
|
33
33
|
----------
|
@@ -109,3 +109,13 @@ Usage
|
|
109
109
|
end
|
110
110
|
end
|
111
111
|
end
|
112
|
+
|
113
|
+
Who are the authors
|
114
|
+
-------------------
|
115
|
+
|
116
|
+
This gem has been created in qik.com for our internal use and then
|
117
|
+
the sources were opened for other people to use. All the code in this package
|
118
|
+
has been developed by Gleb Pomykalov, and is based on
|
119
|
+
[http://github.com/kovyrin/loops](loops) code written by
|
120
|
+
Alexey Kovyrin. The gem is released under the MIT license. For more details,
|
121
|
+
see the LICENSE file.
|
data/ROADMAP
ADDED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0
|
1
|
+
0.1.0
|
data/daemonizer.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{daemonizer}
|
8
|
-
s.version = "0.0
|
8
|
+
s.version = "0.1.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Gleb Pomykalov"]
|
@@ -15,10 +15,13 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.email = %q{glebpom@gmail.com}
|
16
16
|
s.executables = ["daemonizer"]
|
17
17
|
s.extra_rdoc_files = [
|
18
|
-
"
|
18
|
+
"LICENSE",
|
19
|
+
"README.md"
|
19
20
|
]
|
20
21
|
s.files = [
|
21
|
-
"
|
22
|
+
"LICENSE",
|
23
|
+
"README.md",
|
24
|
+
"ROADMAP",
|
22
25
|
"Rakefile",
|
23
26
|
"VERSION",
|
24
27
|
"bin/daemonizer",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: daemonizer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
+
- 1
|
8
9
|
- 0
|
9
|
-
|
10
|
-
version: 0.0.8
|
10
|
+
version: 0.1.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Gleb Pomykalov
|
@@ -57,9 +57,12 @@ executables:
|
|
57
57
|
extensions: []
|
58
58
|
|
59
59
|
extra_rdoc_files:
|
60
|
+
- LICENSE
|
60
61
|
- README.md
|
61
62
|
files:
|
63
|
+
- LICENSE
|
62
64
|
- README.md
|
65
|
+
- ROADMAP
|
63
66
|
- Rakefile
|
64
67
|
- VERSION
|
65
68
|
- bin/daemonizer
|