kuzushi 0.0.24 → 0.0.25
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/VERSION +1 -1
- data/lib/kuzushi.rb +2 -3
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.25
|
data/lib/kuzushi.rb
CHANGED
|
@@ -297,13 +297,12 @@ class Kuzushi
|
|
|
297
297
|
retry unless names.empty?
|
|
298
298
|
error("file not found: #{file}")
|
|
299
299
|
rescue Object => e
|
|
300
|
-
error("error fetching file: #{names.first}/#{file}
|
|
300
|
+
error("error fetching file: #{names.first}/#{file} : #{e.message}")
|
|
301
301
|
end
|
|
302
302
|
end
|
|
303
303
|
|
|
304
|
-
def error(message
|
|
304
|
+
def error(message)
|
|
305
305
|
puts "ERROR :#{message}"
|
|
306
|
-
puts exception.message
|
|
307
306
|
end
|
|
308
307
|
|
|
309
308
|
def get(key)
|