build_status_server 0.13 → 0.14
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/Gemfile.lock +1 -1
- data/lib/build_status_server/config.rb +4 -1
- data/lib/build_status_server/version.rb +1 -1
- metadata +1 -1
data/Gemfile.lock
CHANGED
|
@@ -66,6 +66,10 @@ strongly recommended to create one in any of the following locations:
|
|
|
66
66
|
to use):
|
|
67
67
|
|
|
68
68
|
#{get_example_config}
|
|
69
|
+
|
|
70
|
+
Also, you can specify what configuration file to load by passing --config as an
|
|
71
|
+
argument (see "#{File.basename($0)} --help")
|
|
72
|
+
|
|
69
73
|
EOT
|
|
70
74
|
|
|
71
75
|
return YAML.load(get_example_config)
|
|
@@ -80,7 +84,6 @@ strongly recommended to create one in any of the following locations:
|
|
|
80
84
|
def locations_to_try
|
|
81
85
|
%w(
|
|
82
86
|
~/.config/build_status_server/config.yml
|
|
83
|
-
./config/config.yml
|
|
84
87
|
/etc/build_status_server/config.yml
|
|
85
88
|
/usr/local/etc/build_status_server/config.yml
|
|
86
89
|
)
|