starling 0.10.0 → 0.10.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/CHANGELOG +1 -1
- data/Rakefile +2 -2
- data/starling.gemspec +66 -0
- metadata +12 -10
data/CHANGELOG
CHANGED
data/Rakefile
CHANGED
@@ -6,12 +6,12 @@ begin
|
|
6
6
|
|
7
7
|
Jeweler::Tasks.new do |s|
|
8
8
|
s.name = "starling"
|
9
|
-
s.version = "0.10.
|
9
|
+
s.version = "0.10.1"
|
10
10
|
s.authors = ["Blaine Cook", "Chris Wanstrath", "Britt Selvitelle", "Glenn Rempe", "Abdul-Rahman Advany", "Seth Fitzsimmons", "Harm Aarts", "Chris Gaffney"]
|
11
11
|
s.email = ["blaine@twitter.com", "chris@ozmm.org", "abdulrahman@advany.com", "starlingmq@groups.google.com", "harmaarts@gmail.com", "gaffneyc@gmail.com"]
|
12
12
|
s.homepage = "http://github.com/starling/starling/"
|
13
13
|
s.summary = "Starling is a lightweight, transactional, distributed queue server"
|
14
|
-
s.description = s.
|
14
|
+
s.description = "Starling is a light-weight, persistent queue server that speaks the memcached protocol. It was originally developed for Twitter's backend."
|
15
15
|
|
16
16
|
s.executables = ["starling", "starling_top"]
|
17
17
|
s.require_paths = ["lib"]
|
data/starling.gemspec
ADDED
@@ -0,0 +1,66 @@
|
|
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{starling}
|
8
|
+
s.version = "0.10.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Blaine Cook", "Chris Wanstrath", "Britt Selvitelle", "Glenn Rempe", "Abdul-Rahman Advany", "Seth Fitzsimmons", "Harm Aarts", "Chris Gaffney"]
|
12
|
+
s.date = %q{2010-01-20}
|
13
|
+
s.description = %q{Starling is a light-weight, persistent queue server that speaks the memcached protocol. It was originally developed for Twitter's backend.}
|
14
|
+
s.email = ["blaine@twitter.com", "chris@ozmm.org", "abdulrahman@advany.com", "starlingmq@groups.google.com", "harmaarts@gmail.com", "gaffneyc@gmail.com"]
|
15
|
+
s.executables = ["starling", "starling_top"]
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"CHANGELOG",
|
18
|
+
"LICENSE",
|
19
|
+
"README.rdoc"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
".gitignore",
|
23
|
+
"CHANGELOG",
|
24
|
+
"LICENSE",
|
25
|
+
"README.rdoc",
|
26
|
+
"Rakefile",
|
27
|
+
"bin/starling",
|
28
|
+
"bin/starling_top",
|
29
|
+
"etc/sample-config.yml",
|
30
|
+
"etc/starling.redhat",
|
31
|
+
"etc/starling.ubuntu",
|
32
|
+
"lib/starling.rb",
|
33
|
+
"lib/starling/handler.rb",
|
34
|
+
"lib/starling/persistent_queue.rb",
|
35
|
+
"lib/starling/queue_collection.rb",
|
36
|
+
"lib/starling/server.rb",
|
37
|
+
"lib/starling/server_runner.rb",
|
38
|
+
"spec/starling_server_spec.rb",
|
39
|
+
"starling.gemspec"
|
40
|
+
]
|
41
|
+
s.homepage = %q{http://github.com/starling/starling/}
|
42
|
+
s.rdoc_options = ["--quiet", "--title", "starling documentation", "--opname", "index.html", "--line-numbers", "--main", "README.rdoc", "--inline-source"]
|
43
|
+
s.require_paths = ["lib"]
|
44
|
+
s.rubygems_version = %q{1.3.5}
|
45
|
+
s.summary = %q{Starling is a lightweight, transactional, distributed queue server}
|
46
|
+
s.test_files = [
|
47
|
+
"spec/starling_server_spec.rb"
|
48
|
+
]
|
49
|
+
|
50
|
+
if s.respond_to? :specification_version then
|
51
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
52
|
+
s.specification_version = 3
|
53
|
+
|
54
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
55
|
+
s.add_runtime_dependency(%q<memcache-client>, [">= 1.7.0"])
|
56
|
+
s.add_runtime_dependency(%q<eventmachine>, [">= 0.12.0"])
|
57
|
+
else
|
58
|
+
s.add_dependency(%q<memcache-client>, [">= 1.7.0"])
|
59
|
+
s.add_dependency(%q<eventmachine>, [">= 0.12.0"])
|
60
|
+
end
|
61
|
+
else
|
62
|
+
s.add_dependency(%q<memcache-client>, [">= 1.7.0"])
|
63
|
+
s.add_dependency(%q<eventmachine>, [">= 0.12.0"])
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: starling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Blaine Cook
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 0.12.0
|
41
41
|
version:
|
42
|
-
description: Starling is a
|
42
|
+
description: Starling is a light-weight, persistent queue server that speaks the memcached protocol. It was originally developed for Twitter's backend.
|
43
43
|
email:
|
44
44
|
- blaine@twitter.com
|
45
45
|
- chris@ozmm.org
|
@@ -53,26 +53,28 @@ executables:
|
|
53
53
|
extensions: []
|
54
54
|
|
55
55
|
extra_rdoc_files:
|
56
|
-
- README.rdoc
|
57
56
|
- CHANGELOG
|
58
57
|
- LICENSE
|
58
|
+
- README.rdoc
|
59
59
|
files:
|
60
|
+
- .gitignore
|
61
|
+
- CHANGELOG
|
62
|
+
- LICENSE
|
63
|
+
- README.rdoc
|
64
|
+
- Rakefile
|
60
65
|
- bin/starling
|
61
66
|
- bin/starling_top
|
62
|
-
- CHANGELOG
|
63
67
|
- etc/sample-config.yml
|
64
68
|
- etc/starling.redhat
|
65
69
|
- etc/starling.ubuntu
|
70
|
+
- lib/starling.rb
|
66
71
|
- lib/starling/handler.rb
|
67
72
|
- lib/starling/persistent_queue.rb
|
68
73
|
- lib/starling/queue_collection.rb
|
69
74
|
- lib/starling/server.rb
|
70
75
|
- lib/starling/server_runner.rb
|
71
|
-
- lib/starling.rb
|
72
|
-
- LICENSE
|
73
|
-
- Rakefile
|
74
|
-
- README.rdoc
|
75
76
|
- spec/starling_server_spec.rb
|
77
|
+
- starling.gemspec
|
76
78
|
has_rdoc: true
|
77
79
|
homepage: http://github.com/starling/starling/
|
78
80
|
licenses: []
|
@@ -109,5 +111,5 @@ rubygems_version: 1.3.5
|
|
109
111
|
signing_key:
|
110
112
|
specification_version: 3
|
111
113
|
summary: Starling is a lightweight, transactional, distributed queue server
|
112
|
-
test_files:
|
113
|
-
|
114
|
+
test_files:
|
115
|
+
- spec/starling_server_spec.rb
|