br_db 0.1.5 → 0.1.7
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/app/jobs/br_db/load_zip_codes_job.rb +6 -2
- data/db/migrate/20241209190243_create_brdb_countries.rb +1 -1
- data/db/migrate/20241209190300_create_brdb_states.rb +1 -1
- data/db/migrate/20241209190403_create_brdb_cities.rb +1 -1
- data/db/migrate/20241209202503_create_brdb_zip_codes.rb +1 -1
- data/db/migrate/20241210125732_create_brdb_companies.rb +1 -1
- data/db/migrate/20241210130730_create_brdb_cnaes.rb +1 -1
- data/lib/br_db/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: 6942ad4fc50b159b7a566d5e168970754970a29fac7e2e0071198579dfdd94ab
|
4
|
+
data.tar.gz: d403ba0ead69338a899c9c1ffd84cfe1d7eedb02c0553a93feff7c825071e8ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d6c905025a37b26ef7947be4a68477c4879c3c14807751397872f3afcfc6d6208aaa6d2fe2b74f5fee580a534ea399ab4ac6f780e88736393fcbe3091c23ead
|
7
|
+
data.tar.gz: a8abe7cf404ff7ae324503c1271221a2dbca51162cda34389546b814bbd2a12fe453a9d93c01112fd1c6be2fd54ebad3ac720203a55d4ec4270eedbad225a2b3
|
@@ -74,9 +74,9 @@ module BrDb
|
|
74
74
|
city_mapping = get_data_map("log_localidade.txt", 2, 8)
|
75
75
|
neighborhood_mapping = get_data_map("log_bairro.txt", 3, 3)
|
76
76
|
|
77
|
+
zip_codes = []
|
77
78
|
# iterate over the csv files that match the regex pattern
|
78
79
|
Dir.glob(path.join("**", "*.txt")).each do |file_path|
|
79
|
-
zip_codes = []
|
80
80
|
next unless csv_file_path_regex.match?(file_path)
|
81
81
|
CSV.foreach(file_path, liberal_parsing: true, col_sep: DELIMITER, headers: false, encoding: ENCODING, quote_char: QUOTE_CHARS.shift) do |row|
|
82
82
|
street_name = row[8] + " " + row[5]
|
@@ -90,8 +90,12 @@ module BrDb
|
|
90
90
|
zip_code: row[7]
|
91
91
|
}
|
92
92
|
end
|
93
|
-
|
93
|
+
if zip_codes.count % 1000 == 0
|
94
|
+
ZipCode.insert_all(zip_codes)
|
95
|
+
zip_codes = []
|
96
|
+
end
|
94
97
|
end
|
98
|
+
ZipCode.insert_all(zip_codes)
|
95
99
|
end
|
96
100
|
|
97
101
|
def import_city_zip_codes
|
data/lib/br_db/version.rb
CHANGED