karousel 0.9.8 → 0.9.9
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/VERSION +1 -1
- data/karousel.gemspec +71 -0
- data/lib/karousel/errors.rb +3 -0
- metadata +4 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.9
|
data/karousel.gemspec
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
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 = "karousel"
|
|
8
|
+
s.version = "0.9.9"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Dmitry Mozzherin", "David Shorthouse"]
|
|
12
|
+
s.date = "2012-09-21"
|
|
13
|
+
s.description = "Use it if you have waaay to many items in your workers' queue"
|
|
14
|
+
s.email = "dmozzherin@gmail.com"
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE.txt",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".rspec",
|
|
22
|
+
".rvmrc",
|
|
23
|
+
".travis.yml",
|
|
24
|
+
"Gemfile",
|
|
25
|
+
"Gemfile.lock",
|
|
26
|
+
"LICENSE.txt",
|
|
27
|
+
"README.rdoc",
|
|
28
|
+
"Rakefile",
|
|
29
|
+
"VERSION",
|
|
30
|
+
"features/karousel.feature",
|
|
31
|
+
"features/step_definitions/karousel_steps.rb",
|
|
32
|
+
"features/support/env.rb",
|
|
33
|
+
"karousel.gemspec",
|
|
34
|
+
"lib/karousel.rb",
|
|
35
|
+
"lib/karousel/client_job.rb",
|
|
36
|
+
"lib/karousel/errors.rb",
|
|
37
|
+
"lib/karousel/job.rb",
|
|
38
|
+
"spec/job_spec.rb",
|
|
39
|
+
"spec/karousel_spec.rb",
|
|
40
|
+
"spec/spec_helper.rb",
|
|
41
|
+
"spec/support/client_job_dummy.rb",
|
|
42
|
+
"spec/support/dummy_server.rb"
|
|
43
|
+
]
|
|
44
|
+
s.homepage = "http://github.com/dimus/karousel"
|
|
45
|
+
s.licenses = ["MIT"]
|
|
46
|
+
s.require_paths = ["lib"]
|
|
47
|
+
s.rubygems_version = "1.8.24"
|
|
48
|
+
s.summary = "Job dispenser for parallel workers"
|
|
49
|
+
|
|
50
|
+
if s.respond_to? :specification_version then
|
|
51
|
+
s.specification_version = 3
|
|
52
|
+
|
|
53
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
54
|
+
s.add_runtime_dependency(%q<jeweler>, [">= 0"])
|
|
55
|
+
s.add_development_dependency(%q<cucumber>, [">= 0"])
|
|
56
|
+
s.add_development_dependency(%q<rspec>, [">= 0"])
|
|
57
|
+
s.add_development_dependency(%q<debugger>, [">= 0"])
|
|
58
|
+
else
|
|
59
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
|
60
|
+
s.add_dependency(%q<cucumber>, [">= 0"])
|
|
61
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
|
62
|
+
s.add_dependency(%q<debugger>, [">= 0"])
|
|
63
|
+
end
|
|
64
|
+
else
|
|
65
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
|
66
|
+
s.add_dependency(%q<cucumber>, [">= 0"])
|
|
67
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
|
68
|
+
s.add_dependency(%q<debugger>, [">= 0"])
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: karousel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.9
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -97,8 +97,10 @@ files:
|
|
|
97
97
|
- features/karousel.feature
|
|
98
98
|
- features/step_definitions/karousel_steps.rb
|
|
99
99
|
- features/support/env.rb
|
|
100
|
+
- karousel.gemspec
|
|
100
101
|
- lib/karousel.rb
|
|
101
102
|
- lib/karousel/client_job.rb
|
|
103
|
+
- lib/karousel/errors.rb
|
|
102
104
|
- lib/karousel/job.rb
|
|
103
105
|
- spec/job_spec.rb
|
|
104
106
|
- spec/karousel_spec.rb
|
|
@@ -120,7 +122,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
120
122
|
version: '0'
|
|
121
123
|
segments:
|
|
122
124
|
- 0
|
|
123
|
-
hash:
|
|
125
|
+
hash: 3770005762549287035
|
|
124
126
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
125
127
|
none: false
|
|
126
128
|
requirements:
|