beetle 0.3.0.rc.1 → 0.3.0.rc.2
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/beetle.gemspec +1 -1
- data/lib/beetle/redis_configuration_client.rb +2 -2
- metadata +4 -4
data/beetle.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "beetle"
|
|
3
|
-
s.version = "0.3.0.rc.
|
|
3
|
+
s.version = "0.3.0.rc.2"
|
|
4
4
|
s.required_rubygems_version = ">= 1.3.7"
|
|
5
5
|
s.authors = ["Stefan Kaes", "Pascal Friederich", "Ali Jelveh", "Sebastian Roebke"]
|
|
6
6
|
s.date = Time.now.strftime('%Y-%m-%d')
|
|
@@ -23,9 +23,9 @@ module Beetle
|
|
|
23
23
|
# The current redis master
|
|
24
24
|
attr_reader :current_master
|
|
25
25
|
|
|
26
|
-
# Unique id for this instance (defaults to the hostname)
|
|
26
|
+
# Unique id for this instance (defaults to the fully qualified hostname)
|
|
27
27
|
def id
|
|
28
|
-
@id ||= `hostname`.chomp
|
|
28
|
+
@id ||= `hostname -f`.chomp
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
def initialize #:nodoc:
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beetle
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 15424033
|
|
5
5
|
prerelease: 6
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
9
|
- 0
|
|
10
10
|
- rc
|
|
11
|
-
-
|
|
12
|
-
version: 0.3.0.rc.
|
|
11
|
+
- 2
|
|
12
|
+
version: 0.3.0.rc.2
|
|
13
13
|
platform: ruby
|
|
14
14
|
authors:
|
|
15
15
|
- Stefan Kaes
|
|
@@ -20,7 +20,7 @@ autorequire:
|
|
|
20
20
|
bindir: bin
|
|
21
21
|
cert_chain: []
|
|
22
22
|
|
|
23
|
-
date: 2011-
|
|
23
|
+
date: 2011-09-14 00:00:00 +02:00
|
|
24
24
|
default_executable: beetle
|
|
25
25
|
dependencies:
|
|
26
26
|
- !ruby/object:Gem::Dependency
|