biosphere 0.2.9 → 0.2.10
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.
- checksums.yaml +4 -4
- data/bin/biosphere +7 -2
- data/lib/biosphere/exceptions.rb +2 -2
- data/lib/biosphere/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5334e29f8810799170f770884df905fdf69475fb
|
4
|
+
data.tar.gz: 81106994d0ce532dd43c7353f0380b5d3b886167
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 792641b8e3ddda7b06d1a1755e7e3a674d63c36b4ee639cb39dee408cf2246a9c8adaf87ad3237ff9aa9d12b115c294b4175ee0e6351e3ebce6649eea40fd3ed
|
7
|
+
data.tar.gz: 5ffbf10cd0629e36c6f1f88b5fd64969f0e07cb929f3cf3b1d1aa1ee94df258b697f41cc248c41ad762ac259a53666a62a25295d576d93ddc94419a0e9c1383e
|
data/bin/biosphere
CHANGED
@@ -104,8 +104,13 @@ if options.src
|
|
104
104
|
end
|
105
105
|
rescue ::Biosphere::ConfigurationError => e
|
106
106
|
STDERR.puts "Configuration Error: #{e}".colorize(:red)
|
107
|
-
|
108
|
-
|
107
|
+
if e.explanation
|
108
|
+
STDERR.puts e.explanation
|
109
|
+
end
|
110
|
+
if e.settings
|
111
|
+
STDERR.puts "Relevant configuration part:"
|
112
|
+
ap e.settings
|
113
|
+
end
|
109
114
|
exit -1
|
110
115
|
end
|
111
116
|
|
data/lib/biosphere/exceptions.rb
CHANGED
data/lib/biosphere/version.rb
CHANGED