daemonizer 0.4.16 → 0.4.17

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.
Files changed (3) hide show
  1. data/VERSION +1 -1
  2. data/daemonizer.gemspec +29 -31
  3. metadata +8 -8
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.16
1
+ 0.4.17
@@ -1,61 +1,59 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{daemonizer}
8
- s.version = "0.4.16"
8
+ s.version = "0.4.17"
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"]
12
- s.date = %q{2010-09-08}
12
+ s.date = %q{2011-10-04}
13
13
  s.default_executable = %q{daemonizer}
14
14
  s.description = %q{Inspired by bundler and rack. Mostly built on top of Alexey Kovyrin's loops code. http://github.com/kovyrin/loops}
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
+ "README.md"
20
20
  ]
21
21
  s.files = [
22
22
  "LICENSE",
23
- "README.md",
24
- "ROADMAP",
25
- "Rakefile",
26
- "VERSION",
27
- "bin/daemonizer",
28
- "daemonizer.gemspec",
29
- "lib/daemonizer.rb",
30
- "lib/daemonizer/autoload.rb",
31
- "lib/daemonizer/cli.rb",
32
- "lib/daemonizer/config.rb",
33
- "lib/daemonizer/daemonize.rb",
34
- "lib/daemonizer/dsl.rb",
35
- "lib/daemonizer/engine.rb",
36
- "lib/daemonizer/errors.rb",
37
- "lib/daemonizer/handler.rb",
38
- "lib/daemonizer/option.rb",
39
- "lib/daemonizer/process_manager.rb",
40
- "lib/daemonizer/stats.rb",
41
- "lib/daemonizer/worker.rb",
42
- "lib/daemonizer/worker_pool.rb",
43
- "spec/spec.opts",
44
- "spec/spec_helper.rb",
45
- "spec/test_spec.rb"
23
+ "README.md",
24
+ "ROADMAP",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "bin/daemonizer",
28
+ "daemonizer.gemspec",
29
+ "lib/daemonizer.rb",
30
+ "lib/daemonizer/autoload.rb",
31
+ "lib/daemonizer/cli.rb",
32
+ "lib/daemonizer/config.rb",
33
+ "lib/daemonizer/daemonize.rb",
34
+ "lib/daemonizer/dsl.rb",
35
+ "lib/daemonizer/engine.rb",
36
+ "lib/daemonizer/errors.rb",
37
+ "lib/daemonizer/handler.rb",
38
+ "lib/daemonizer/option.rb",
39
+ "lib/daemonizer/process_manager.rb",
40
+ "lib/daemonizer/stats.rb",
41
+ "lib/daemonizer/worker.rb",
42
+ "lib/daemonizer/worker_pool.rb",
43
+ "spec/spec.opts",
44
+ "spec/spec_helper.rb",
45
+ "spec/test_spec.rb"
46
46
  ]
47
47
  s.homepage = %q{http://github.com/glebpom/daemonizer}
48
- s.rdoc_options = ["--charset=UTF-8"]
49
48
  s.require_paths = ["lib"]
50
- s.rubygems_version = %q{1.3.7}
49
+ s.rubygems_version = %q{1.5.3}
51
50
  s.summary = %q{Daemonizer allows you to easily create custom daemons on ruby. Supporting prefork model}
52
51
  s.test_files = [
53
52
  "spec/spec_helper.rb",
54
- "spec/test_spec.rb"
53
+ "spec/test_spec.rb"
55
54
  ]
56
55
 
57
56
  if s.respond_to? :specification_version then
58
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
59
57
  s.specification_version = 3
60
58
 
61
59
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
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: 47
5
- prerelease: false
4
+ hash: 45
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 16
10
- version: 0.4.16
9
+ - 17
10
+ version: 0.4.17
11
11
  platform: ruby
12
12
  authors:
13
13
  - Gleb Pomykalov
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-09-08 00:00:00 +04:00
18
+ date: 2011-10-04 00:00:00 +04:00
19
19
  default_executable: daemonizer
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -117,8 +117,8 @@ homepage: http://github.com/glebpom/daemonizer
117
117
  licenses: []
118
118
 
119
119
  post_install_message:
120
- rdoc_options:
121
- - --charset=UTF-8
120
+ rdoc_options: []
121
+
122
122
  require_paths:
123
123
  - lib
124
124
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -142,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  requirements: []
143
143
 
144
144
  rubyforge_project:
145
- rubygems_version: 1.3.7
145
+ rubygems_version: 1.5.3
146
146
  signing_key:
147
147
  specification_version: 3
148
148
  summary: Daemonizer allows you to easily create custom daemons on ruby. Supporting prefork model