simple-daemon 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,9 +1,13 @@
1
+ == 0.1.1 2007-07-08
2
+
3
+ * 1 minor enhancements:
4
+ * Documentation fix
5
+
1
6
  == 0.1.0 2007-07-08
2
7
 
3
- * 2 minor enhancements:
4
- * Bumped version
8
+ * 1 minor enhancements:
5
9
  * Documentation and website
6
-
10
+
7
11
  == 0.0.3 2007-07-08
8
12
 
9
13
  * 1 major enhancement:
@@ -2,7 +2,7 @@ module SimpleDaemon #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>simple-daemon</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/simple-daemon"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/simple-daemon" class="numbers">0.1.0</a>
36
+ <a href="http://rubyforge.org/projects/simple-daemon" class="numbers">0.1.1</a>
37
37
  </div>
38
38
  <h1>&#x2192; &#8216;simple-daemon&#8217;</h1>
39
39
 
@@ -44,12 +44,12 @@
44
44
  <p>SimpleDaemon is a lightweight daemon module for Ruby. Use it to add daemon functionality to your Ruby script.</p>
45
45
 
46
46
 
47
- <h2>Installing</h2>
47
+ <h2>Installation</h2>
48
48
 
49
49
 
50
50
  <pre syntax="ruby">sudo gem install simple-daemon</pre>
51
51
 
52
- <h2>Demonstration of usage</h2>
52
+ <h2>Example</h2>
53
53
 
54
54
 
55
55
  <pre syntax="ruby">
@@ -68,7 +68,7 @@ class Processor &lt; SimpleDaemon::Base
68
68
  end
69
69
  end
70
70
 
71
- PdfGenerator.daemonize
71
+ Processor.daemonize
72
72
 
73
73
  </pre>
74
74
 
@@ -98,7 +98,7 @@ PdfGenerator.daemonize
98
98
 
99
99
  <p>Comments are welcome. Send an email to <a href="mailto:simple-daemon@googlegroups.com">simple-daemon@googlegroups.com</a>.</p>
100
100
  <p class="coda">
101
- <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, 8th July 2007<br>
101
+ <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, 9th July 2007<br>
102
102
  Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
103
103
  </p>
104
104
  </div>
data/website/index.txt CHANGED
@@ -6,11 +6,11 @@ h2. What
6
6
 
7
7
  SimpleDaemon is a lightweight daemon module for Ruby. Use it to add daemon functionality to your Ruby script.
8
8
 
9
- h2. Installing
9
+ h2. Installation
10
10
 
11
11
  <pre syntax="ruby">sudo gem install simple-daemon</pre>
12
12
 
13
- h2. Demonstration of usage
13
+ h2. Example
14
14
 
15
15
  <pre syntax="ruby">
16
16
 
@@ -28,7 +28,7 @@ class Processor < SimpleDaemon::Base
28
28
  end
29
29
  end
30
30
 
31
- PdfGenerator.daemonize
31
+ Processor.daemonize
32
32
 
33
33
  </pre>
34
34
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: simple-daemon
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.0
7
- date: 2007-07-08 00:00:00 -05:00
6
+ version: 0.1.1
7
+ date: 2007-07-09 00:00:00 -05:00
8
8
  summary: Simple module that adds daemon functionality to a Ruby script.
9
9
  require_paths:
10
10
  - lib