landrush 0.6.0 → 0.7.0
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/lib/landrush/action/redirect_dns.rb +1 -1
- data/lib/landrush/action/setup.rb +3 -3
- data/lib/landrush/store.rb +9 -1
- data/lib/landrush/version.rb +1 -1
- metadata +3 -8
@@ -40,9 +40,9 @@ module Landrush
|
|
40
40
|
end
|
41
41
|
|
42
42
|
def setup_static_dns
|
43
|
-
global_config.landrush.hosts.each do |hostname,
|
44
|
-
info "adding static entry: #{hostname} => #{
|
45
|
-
Store.hosts.set hostname,
|
43
|
+
global_config.landrush.hosts.each do |hostname, dns_value|
|
44
|
+
info "adding static entry: #{hostname} => #{dns_value}"
|
45
|
+
Store.hosts.set hostname, dns_value
|
46
46
|
end
|
47
47
|
end
|
48
48
|
|
data/lib/landrush/store.rb
CHANGED
data/lib/landrush/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: landrush
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-11-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rubydns
|
@@ -135,18 +135,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
135
135
|
- - ! '>='
|
136
136
|
- !ruby/object:Gem::Version
|
137
137
|
version: '0'
|
138
|
-
segments:
|
139
|
-
- 0
|
140
|
-
hash: 901975285541024268
|
141
138
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
139
|
none: false
|
143
140
|
requirements:
|
144
141
|
- - ! '>='
|
145
142
|
- !ruby/object:Gem::Version
|
146
143
|
version: '0'
|
147
|
-
segments:
|
148
|
-
- 0
|
149
|
-
hash: 901975285541024268
|
150
144
|
requirements: []
|
151
145
|
rubyforge_project:
|
152
146
|
rubygems_version: 1.8.23
|
@@ -166,3 +160,4 @@ test_files:
|
|
166
160
|
- test/support/fake_working_dir.rb
|
167
161
|
- test/support/test_server_daemon.rb
|
168
162
|
- test/test_helper.rb
|
163
|
+
has_rdoc:
|