forked from kim/evented-gearman-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gearman-ruby.gemspec
103 lines (99 loc) · 3.14 KB
/
gearman-ruby.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{gearman-ruby}
s.version = "1.3.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Daniel Erat", "Ladislav Martincik", "Pablo Delgado", "Mauro Pompilio", "Antonio Garrote", "Kim Altintop"]
s.date = %q{2009-08-06}
s.description = %q{Library for the Gearman distributed job system}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README"
]
s.files = [
".gitignore",
"HOWTO",
"LICENSE",
"README",
"Rakefile",
"TODO",
"VERSION.yml",
"examples/Net/Gearman/Client.php",
"examples/Net/Gearman/Connection.php",
"examples/Net/Gearman/Exception.php",
"examples/Net/Gearman/Job.php",
"examples/Net/Gearman/Job/Common.php",
"examples/Net/Gearman/Job/Exception.php",
"examples/Net/Gearman/Job/Sleep.php",
"examples/Net/Gearman/Manager.php",
"examples/Net/Gearman/Set.php",
"examples/Net/Gearman/Task.php",
"examples/Net/Gearman/Worker.php",
"examples/calculus_client.rb",
"examples/calculus_worker.rb",
"examples/client.php",
"examples/client.rb",
"examples/client_background.rb",
"examples/client_data.rb",
"examples/client_exception.rb",
"examples/client_prefix.rb",
"examples/gearman_environment.sh",
"examples/scale_image.rb",
"examples/scale_image_worker.rb",
"examples/server.rb",
"examples/worker.php",
"examples/worker.rb",
"examples/worker_data.rb",
"examples/worker_exception.rb",
"examples/worker_prefix.rb",
"gearman-ruby.gemspec",
"lib/gearman.rb",
"lib/gearman/client.rb",
"lib/gearman/server.rb",
"lib/gearman/task.rb",
"lib/gearman/taskset.rb",
"lib/gearman/testlib.rb",
"lib/gearman/util.rb",
"lib/gearman/worker.rb",
"test/client_test.rb",
"test/mock_client_test.rb",
"test/mock_worker_test.rb",
"test/util_test.rb",
"test/worker_test.rb"
]
s.homepage = %q{http://github.com/xing/gearman-ruby}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.4}
s.summary = %q{Library for the Gearman distributed job system}
s.test_files = [
"test/client_test.rb",
"test/mock_client_test.rb",
"test/mock_worker_test.rb",
"test/util_test.rb",
"test/worker_test.rb",
"examples/calculus_client.rb",
"examples/calculus_worker.rb",
"examples/client.rb",
"examples/client_background.rb",
"examples/client_data.rb",
"examples/client_exception.rb",
"examples/client_prefix.rb",
"examples/scale_image.rb",
"examples/scale_image_worker.rb",
"examples/server.rb",
"examples/worker.rb",
"examples/worker_data.rb",
"examples/worker_exception.rb",
"examples/worker_prefix.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end