nice_http 1.7.7 → 1.7.8
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/lib/nice_http.rb +0 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3137a35d4f4d764d61c31636719a302fe3f4d54bd9422941480a5b7407d83d88
|
|
4
|
+
data.tar.gz: e41e25e56a6df7a9f138aafa0a235c4d5c5acff53d62bebf56425e247e85473d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96928509bf669351fc9e84fc014767c3ec7874b7223146a89e7982fc516494cbf658995acf3d65cbeb77383bd415afecf567aad17158d0198a63893cd7af109a
|
|
7
|
+
data.tar.gz: 3971c14a793c9f7e8657b1e9986997f99208199c4622e66122cd46560c9f9ef06800f6bd363d25ccb08bf651b325088d7862d0f401ba4cf5883e6f0b2aaac6b1
|
data/lib/nice_http.rb
CHANGED
|
@@ -212,7 +212,6 @@ class NiceHttp
|
|
|
212
212
|
File.open("#{file_name.gsub(/.json$/, "_stats_")}#{key}.json", "w") { |file| file.write(self.stats[key].to_json) }
|
|
213
213
|
end
|
|
214
214
|
else
|
|
215
|
-
puts file_name.gsub(/.\w+$/, "_stats_")
|
|
216
215
|
require 'yaml'
|
|
217
216
|
self.stats.keys.each do |key|
|
|
218
217
|
File.open("#{file_name.gsub(/.\w+$/, "_stats_")}#{key}.yaml", "w") { |file| file.write(self.stats[key].to_yaml) }
|