noda 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/bin/noda_job_worker +1 -1
  3. metadata +3 -4
  4. data/noda.gemspec +0 -76
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.7
1
+ 0.0.8
data/bin/noda_job_worker CHANGED
@@ -20,7 +20,7 @@ options = {
20
20
  require "socket"
21
21
  ip=TCPSocket.gethostbyname(Socket::gethostname).last
22
22
  STDOUT.puts " connect to job_server at druby://#{ip}:10001"
23
- Daemons.call(options){
23
+ Daemons.run_proc("job_worker",options){
24
24
  s=Noda::JobWorker.new("#{ip}", "10001")
25
25
  s.start_service
26
26
  }
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: noda
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 7
10
- version: 0.0.7
9
+ - 8
10
+ version: 0.0.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - takuya
@@ -106,7 +106,6 @@ files:
106
106
  - lib/noda/table.rb
107
107
  - lib/noda/table_auto_saver.rb
108
108
  - lib/noda/task.rb
109
- - noda.gemspec
110
109
  - test/test_helper.rb
111
110
  - test/test_job_monitor.rb
112
111
  - test/test_job_server.rb
data/noda.gemspec DELETED
@@ -1,76 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{noda}
8
- s.version = "0.0.7"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["takuya"]
12
- s.date = %q{2011-05-29}
13
- s.description = %q{noda is job queue system using druby }
14
- s.email = %q{takuya.1st@gmail}
15
- s.executables = ["noda_job_worker", "noda_job_server"]
16
- s.extra_rdoc_files = [
17
- "LICENSE.txt",
18
- "README.rdoc"
19
- ]
20
- s.files = [
21
- ".document",
22
- "Gemfile",
23
- "Gemfile.lock",
24
- "LICENSE.txt",
25
- "README.rdoc",
26
- "Rakefile",
27
- "VERSION",
28
- "bin/noda_job_server",
29
- "bin/noda_job_worker",
30
- "lib/noda.rb",
31
- "lib/noda/job_monitor.rb",
32
- "lib/noda/job_server.rb",
33
- "lib/noda/job_worker.rb",
34
- "lib/noda/rqueue.rb",
35
- "lib/noda/table.rb",
36
- "lib/noda/table_auto_saver.rb",
37
- "lib/noda/task.rb",
38
- "noda.gemspec",
39
- "test/test_helper.rb",
40
- "test/test_job_monitor.rb",
41
- "test/test_job_server.rb",
42
- "test/test_job_worker.rb",
43
- "test/test_noda.rb",
44
- "test/test_rqueue.rb",
45
- "test/test_table.rb",
46
- "test/test_table_saver_woker.rb",
47
- "test/test_task.rb"
48
- ]
49
- s.homepage = %q{http://github.com/takuya/noda}
50
- s.licenses = ["MIT"]
51
- s.require_paths = ["lib"]
52
- s.rubygems_version = %q{1.5.0}
53
- s.summary = %q{noda is job queue system}
54
-
55
- if s.respond_to? :specification_version then
56
- s.specification_version = 3
57
-
58
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
59
- s.add_development_dependency(%q<shoulda>, [">= 0"])
60
- s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
61
- s.add_development_dependency(%q<jeweler>, ["~> 1.6.0"])
62
- s.add_development_dependency(%q<rcov>, [">= 0"])
63
- else
64
- s.add_dependency(%q<shoulda>, [">= 0"])
65
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
66
- s.add_dependency(%q<jeweler>, ["~> 1.6.0"])
67
- s.add_dependency(%q<rcov>, [">= 0"])
68
- end
69
- else
70
- s.add_dependency(%q<shoulda>, [">= 0"])
71
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
72
- s.add_dependency(%q<jeweler>, ["~> 1.6.0"])
73
- s.add_dependency(%q<rcov>, [">= 0"])
74
- end
75
- end
76
-