fiveruns-starling 0.9.7.5 → 0.9.7.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/CHANGELOG +4 -0
- data/bin/starling_top +3 -3
- data/lib/starling/server.rb +2 -2
- metadata +5 -3
data/CHANGELOG
CHANGED
data/bin/starling_top
CHANGED
|
@@ -6,15 +6,15 @@ require 'socket'
|
|
|
6
6
|
|
|
7
7
|
@options = OpenStruct.new
|
|
8
8
|
@options.hostname = 'localhost'
|
|
9
|
-
@options.port =
|
|
9
|
+
@options.port = 22122
|
|
10
10
|
|
|
11
11
|
op = OptionParser.new do |opts|
|
|
12
|
-
opts.banner = "
|
|
12
|
+
opts.banner = "Starling Top\nUsage: #{$0} [options]"
|
|
13
13
|
opts.separator "General Options:"
|
|
14
14
|
opts.on("-h HOSTNAME", "--hostname=HOSTNAME", "Hostname [default: localhost]") do |h|
|
|
15
15
|
@options.hostname = h
|
|
16
16
|
end
|
|
17
|
-
opts.on("-p PORT", "--port=PORT", Integer, "Port [default:
|
|
17
|
+
opts.on("-p PORT", "--port=PORT", Integer, "Port [default: 22122]") do |p|
|
|
18
18
|
@options.port = p
|
|
19
19
|
end
|
|
20
20
|
opts.on_tail("--help", "Show this message") do
|
data/lib/starling/server.rb
CHANGED
|
@@ -11,7 +11,7 @@ require File.join(here, 'handler')
|
|
|
11
11
|
|
|
12
12
|
module StarlingServer
|
|
13
13
|
|
|
14
|
-
VERSION = "0.9.7.
|
|
14
|
+
VERSION = "0.9.7.6"
|
|
15
15
|
|
|
16
16
|
class Base
|
|
17
17
|
attr_reader :logger
|
|
@@ -78,7 +78,7 @@ module StarlingServer
|
|
|
78
78
|
@opts[:queue] = QueueCollection.new(@opts[:path])
|
|
79
79
|
@@logger.level = @opts[:log_level] || Logger::ERROR
|
|
80
80
|
|
|
81
|
-
@@logger.info "Starling STARTUP on #{@opts[:host]}:#{@opts[:port]}"
|
|
81
|
+
@@logger.info "Starling #{VERSION} STARTUP on #{@opts[:host]}:#{@opts[:port]}"
|
|
82
82
|
|
|
83
83
|
EventMachine.epoll
|
|
84
84
|
EventMachine.set_descriptor_table_size(4096)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fiveruns-starling
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.7.
|
|
4
|
+
version: 0.9.7.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Blaine Cook
|
|
@@ -9,11 +9,12 @@ authors:
|
|
|
9
9
|
- anotherbritt
|
|
10
10
|
- Glenn Rempe
|
|
11
11
|
- Abdul-Rahman Advany
|
|
12
|
+
- Mike Perham
|
|
12
13
|
autorequire:
|
|
13
14
|
bindir: bin
|
|
14
15
|
cert_chain: []
|
|
15
16
|
|
|
16
|
-
date: 2008-
|
|
17
|
+
date: 2008-07-08 00:00:00 -07:00
|
|
17
18
|
default_executable:
|
|
18
19
|
dependencies:
|
|
19
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -48,6 +49,7 @@ email:
|
|
|
48
49
|
- blaine@twitter.com
|
|
49
50
|
- chris@ozmm.org
|
|
50
51
|
- abdulrahman@advany.com
|
|
52
|
+
- mperham@gmail.com
|
|
51
53
|
executables:
|
|
52
54
|
- starling
|
|
53
55
|
- starling_client
|
|
@@ -105,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
105
107
|
requirements: []
|
|
106
108
|
|
|
107
109
|
rubyforge_project:
|
|
108
|
-
rubygems_version: 1.0
|
|
110
|
+
rubygems_version: 1.2.0
|
|
109
111
|
signing_key:
|
|
110
112
|
specification_version: 2
|
|
111
113
|
summary: Starling is a lightweight, transactional, distributed queue server
|