magistrate_monitor 0.4.0 → 0.5.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/db/test.sqlite3 +0 -0
- data/lib/magistrate_monitor/server.rb +2 -2
- data/magistrate_monitor.gemspec +1 -1
- metadata +4 -4
data/db/test.sqlite3
CHANGED
|
Binary file
|
|
@@ -17,7 +17,7 @@ module MagistrateMonitor
|
|
|
17
17
|
|
|
18
18
|
config_file = File.join('config', 'magistrate.yml')
|
|
19
19
|
if File.exist?( config_file )
|
|
20
|
-
config = File.open(config_file)
|
|
20
|
+
config = YAML::load( File.open(config_file) )
|
|
21
21
|
if config['http_username'] && config['http_password']
|
|
22
22
|
result = [config['http_username'], config['http_password']]
|
|
23
23
|
end
|
|
@@ -94,4 +94,4 @@ module MagistrateMonitor
|
|
|
94
94
|
end
|
|
95
95
|
end
|
|
96
96
|
end
|
|
97
|
-
end
|
|
97
|
+
end
|
data/magistrate_monitor.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "magistrate_monitor"
|
|
3
|
-
s.version = "0.
|
|
3
|
+
s.version = "0.5.0"
|
|
4
4
|
|
|
5
5
|
s.summary = "The user frontend to monitoring and managing the magistrate gem"
|
|
6
6
|
s.description = "Receives checkins from the magistrate gem and sends back commands"
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: magistrate_monitor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 11
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
8
|
+
- 5
|
|
9
9
|
- 0
|
|
10
|
-
version: 0.
|
|
10
|
+
version: 0.5.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Drew Blas
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-09-
|
|
18
|
+
date: 2011-09-22 00:00:00 -05:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|