br_db 0.1.6 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9cfba40bb4a7a69e1c743b5a2f694fb85fd450c4c28e5736fbe4cd69afd3fdc1
4
- data.tar.gz: 15c74606948407a7ef23b0fd8b090abf6d58f92bd77350b0d57c62cb263ed107
3
+ metadata.gz: 6942ad4fc50b159b7a566d5e168970754970a29fac7e2e0071198579dfdd94ab
4
+ data.tar.gz: d403ba0ead69338a899c9c1ffd84cfe1d7eedb02c0553a93feff7c825071e8ab
5
5
  SHA512:
6
- metadata.gz: 235bf92a1cc179b57b3d5e22fa391073ee381f7a492339dfd0a436e1226946f7b9f87b83e6725203948bd4ca034254e1d61d13a56a4c5f0e4c0545a7835b0cba
7
- data.tar.gz: b4d2d63057c3d0c75a738b851cbe90d7885d9839b9cd4a471c1a53b174e4b3b294492a3b8043a879902e8c2e4f0e1d423572abb02196e478e73a00e946cb2312
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
- ZipCode.insert_all(zip_codes)
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
@@ -1,3 +1,3 @@
1
1
  module BrDb
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: br_db
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ulisses Caon