beanstalker 0.1.5 → 0.1.6
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/beanstalker.gemspec +56 -0
- metadata +4 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.6
|
data/beanstalker.gemspec
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{beanstalker}
|
|
8
|
+
s.version = "0.1.6"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Gleb Pomykalov"]
|
|
12
|
+
s.date = %q{2010-07-14}
|
|
13
|
+
s.description = %q{Beanstalker is a tool for executing long tasks in background in our rails application.}
|
|
14
|
+
s.email = %q{glebpom@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"README"
|
|
17
|
+
]
|
|
18
|
+
s.files = [
|
|
19
|
+
".gitignore",
|
|
20
|
+
"COPYING",
|
|
21
|
+
"README",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"VERSION",
|
|
24
|
+
"beanstalker.gemspec",
|
|
25
|
+
"init.rb",
|
|
26
|
+
"lib/beanstalker/daemonizer_handler.rb",
|
|
27
|
+
"lib/beanstalker/extend.rb",
|
|
28
|
+
"lib/beanstalker/queue.rb",
|
|
29
|
+
"lib/beanstalker/worker.rb"
|
|
30
|
+
]
|
|
31
|
+
s.homepage = %q{http://github.com/glebpom/beanstalker}
|
|
32
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
33
|
+
s.require_paths = ["lib"]
|
|
34
|
+
s.rubygems_version = %q{1.3.7}
|
|
35
|
+
s.summary = %q{Beanstalker provides deep integration with Beanstalk. Fork from http://github.com/kristjan/async_observer}
|
|
36
|
+
|
|
37
|
+
if s.respond_to? :specification_version then
|
|
38
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
39
|
+
s.specification_version = 3
|
|
40
|
+
|
|
41
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
42
|
+
s.add_runtime_dependency(%q<daemonizer>, ["~> 0.2.0"])
|
|
43
|
+
s.add_runtime_dependency(%q<beanstalk-client>, [">= 0"])
|
|
44
|
+
s.add_runtime_dependency(%q<rails>, [">= 2.2.0"])
|
|
45
|
+
else
|
|
46
|
+
s.add_dependency(%q<daemonizer>, ["~> 0.2.0"])
|
|
47
|
+
s.add_dependency(%q<beanstalk-client>, [">= 0"])
|
|
48
|
+
s.add_dependency(%q<rails>, [">= 2.2.0"])
|
|
49
|
+
end
|
|
50
|
+
else
|
|
51
|
+
s.add_dependency(%q<daemonizer>, ["~> 0.2.0"])
|
|
52
|
+
s.add_dependency(%q<beanstalk-client>, [">= 0"])
|
|
53
|
+
s.add_dependency(%q<rails>, [">= 2.2.0"])
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beanstalker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 6
|
|
10
|
+
version: 0.1.6
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Gleb Pomykalov
|
|
@@ -78,6 +78,7 @@ files:
|
|
|
78
78
|
- README
|
|
79
79
|
- Rakefile
|
|
80
80
|
- VERSION
|
|
81
|
+
- beanstalker.gemspec
|
|
81
82
|
- init.rb
|
|
82
83
|
- lib/beanstalker/daemonizer_handler.rb
|
|
83
84
|
- lib/beanstalker/extend.rb
|