rconf 0.8.20 → 0.8.21
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/rconf +2 -2
- data/lib/rconf/version.rb +2 -2
- metadata +3 -3
data/bin/rconf
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
# Copyright (C) 2011 RightScale, Inc, All Rights Reserved Worldwide.
|
2
|
+
# Copyright (C) 2011-2012 RightScale, Inc, All Rights Reserved Worldwide.
|
3
3
|
#
|
4
4
|
# THIS PROGRAM IS CONFIDENTIAL AND PROPRIETARY TO RIGHTSCALE
|
5
5
|
# AND CONSTITUTES A VALUABLE TRADE SECRET. Any unauthorized use,
|
@@ -194,7 +194,7 @@ where [options] are:
|
|
194
194
|
ProgressReporter.report_to_file(options[:output]) if options[:output]
|
195
195
|
begin
|
196
196
|
lang = Language.load(options[:config])
|
197
|
-
report_fatal("Validation of configuration file failed:\n
|
197
|
+
report_fatal("Validation of configuration file failed:\n - #{lang.validation_errors.map(&:red).join("\n - ")}") unless lang.validation_errors.empty?
|
198
198
|
report_error(lang.warnings.join(', ').green) unless lang.warnings.empty?
|
199
199
|
aborted = false
|
200
200
|
Dir.chdir(File.dirname(options[:config])) do
|
data/lib/rconf/version.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2011 RightScale, Inc, All Rights Reserved Worldwide.
|
1
|
+
# Copyright (C) 2011-2012 RightScale, Inc, All Rights Reserved Worldwide.
|
2
2
|
#
|
3
3
|
# THIS PROGRAM IS CONFIDENTIAL AND PROPRIETARY TO RIGHTSCALE
|
4
4
|
# AND CONSTITUTES A VALUABLE TRADE SECRET. Any unauthorized use,
|
@@ -13,7 +13,7 @@ module RightConf
|
|
13
13
|
|
14
14
|
MAJOR = 0
|
15
15
|
MINOR = 8
|
16
|
-
BUILD =
|
16
|
+
BUILD = 21
|
17
17
|
|
18
18
|
VERSION = [MAJOR, MINOR, BUILD].map(&:to_s).join('.')
|
19
19
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 8
|
8
|
-
-
|
9
|
-
version: 0.8.
|
8
|
+
- 21
|
9
|
+
version: 0.8.21
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Raphael Simon
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date:
|
17
|
+
date: 2012-01-09 00:00:00 -08:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|