tomosia_icons8_crawl 0.1.1 → 0.1.2
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/Gemfile.lock +1 -1
- data/lib/tomosia_icons8_crawl.rb +1 -2
- data/lib/tomosia_icons8_crawl/version.rb +1 -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: 61531ce9018c5d2b31c3331cf08574282204d04fd2a286ff54cb51370734c163
|
|
4
|
+
data.tar.gz: 3d5c690063f087ce5d1b026becc462d3346bbd4bc7bd5340d22bad0896351937
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 546ee0523de8309a689a2181196a7c6170b7d4f6c0bcf31c63f78bbada9ce9fc416a260d4c0d90489df7049193298c7be2024d51727815e61dded321c3479167
|
|
7
|
+
data.tar.gz: 023d5d2ab2ed9c5bb87ea1fd2adb8cab5625fc1a33b47dad96b60c1d702b3db4383a441ce73e505ca1062685ee6062633ecdf959c9ecd6827bc89c7fe25db714
|
data/Gemfile.lock
CHANGED
data/lib/tomosia_icons8_crawl.rb
CHANGED
|
@@ -51,7 +51,7 @@ module TomosiaIcons8Crawl
|
|
|
51
51
|
worksheet.write_string(0, 0, 'STT', format)
|
|
52
52
|
worksheet.write_string(0, 1, 'NAME', format)
|
|
53
53
|
worksheet.write_string(0, 2, 'URL', format)
|
|
54
|
-
worksheet.write_string(0, 3, 'SIZE', format)
|
|
54
|
+
worksheet.write_string(0, 3, 'SIZE(byte)', format)
|
|
55
55
|
worksheet.write_string(0, 4, 'EXTENSION', format)
|
|
56
56
|
|
|
57
57
|
multi = []
|
|
@@ -114,7 +114,6 @@ module TomosiaIcons8Crawl
|
|
|
114
114
|
ext = File.extname(img).delete('.')
|
|
115
115
|
threads << Thread.new do
|
|
116
116
|
download_image(des, img)
|
|
117
|
-
@size = @size.to_s + "byte"
|
|
118
117
|
row = {"index" => index, "name" => title, "url" => img, "size" => @size, "extension" => ext}
|
|
119
118
|
@data.push(row)
|
|
120
119
|
end
|