br_db 0.1.4 → 0.1.6

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: 8d6ea8d815fe2d52f0d543b440ebd8ba16cda951f606cfdbf340bca9c4abf1ba
4
- data.tar.gz: e0d82bfb2c171be7f5075b2594bbe50e6d41ecc6ac1fbebc8801adc5c0fd1b9e
3
+ metadata.gz: 9cfba40bb4a7a69e1c743b5a2f694fb85fd450c4c28e5736fbe4cd69afd3fdc1
4
+ data.tar.gz: 15c74606948407a7ef23b0fd8b090abf6d58f92bd77350b0d57c62cb263ed107
5
5
  SHA512:
6
- metadata.gz: e1d5f684e8f555db94239c3d9af6cad3a986970cf4425e5492dcc7eeb0ab63da60f3254db631fe3d87b9be4df6409acda1c7fc11e81472c2ba43c129781eaa7e
7
- data.tar.gz: 75a6699c6ef2f83293b78afdf3398710a3324a4f7b367b4302982994648e87caef0f8977698a0a172537d492100ff6a8a909a3865318b10859e8656cb403b072
6
+ metadata.gz: 235bf92a1cc179b57b3d5e22fa391073ee381f7a492339dfd0a436e1226946f7b9f87b83e6725203948bd4ca034254e1d61d13a56a4c5f0e4c0545a7835b0cba
7
+ data.tar.gz: b4d2d63057c3d0c75a738b851cbe90d7885d9839b9cd4a471c1a53b174e4b3b294492a3b8043a879902e8c2e4f0e1d423572abb02196e478e73a00e946cb2312
@@ -1,3 +1,6 @@
1
+ require "httparty"
2
+ require "json"
3
+
1
4
  module BrDb
2
5
  class LoadCitiesJob < ApplicationJob
3
6
  queue_as :default
@@ -1,4 +1,5 @@
1
1
  require "zip"
2
+ require "httparty"
2
3
  require "down"
3
4
  require "csv"
4
5
  require "fileutils"
@@ -1,3 +1,6 @@
1
+ require "json"
2
+ require "httparty"
3
+
1
4
  module BrDb
2
5
  class LoadCountriesJob < ApplicationJob
3
6
  queue_as :default
@@ -1,3 +1,6 @@
1
+ require "httparty"
2
+ require "json"
3
+
1
4
  module BrDb
2
5
  class LoadStatesJob < ApplicationJob
3
6
  queue_as :default
@@ -1,6 +1,7 @@
1
1
  require "zip"
2
2
  require "csv"
3
3
  require "fileutils"
4
+ require "httparty"
4
5
 
5
6
  module BrDb
6
7
  class LoadZipCodesJob < ApplicationJob
@@ -1,6 +1,6 @@
1
1
  class CreateBrdbCountries < ActiveRecord::Migration[8.0]
2
2
  def change
3
- create_table :brdb_countries do |t|
3
+ create_table :br_db_countries do |t|
4
4
  t.string :name
5
5
  t.string :iso_2
6
6
  t.string :iso_3
@@ -1,6 +1,6 @@
1
1
  class CreateBrdbStates < ActiveRecord::Migration[8.0]
2
2
  def change
3
- create_table :brdb_states do |t|
3
+ create_table :br_db_states do |t|
4
4
  t.string :name
5
5
  t.string :code
6
6
 
@@ -1,6 +1,6 @@
1
1
  class CreateBrdbCities < ActiveRecord::Migration[8.0]
2
2
  def change
3
- create_table :brdb_cities do |t|
3
+ create_table :br_db_cities do |t|
4
4
  t.string :name
5
5
  t.string :code
6
6
  t.string :state_id, null: false
@@ -1,6 +1,6 @@
1
1
  class CreateBrdbZipCodes < ActiveRecord::Migration[8.0]
2
2
  def change
3
- create_table :brdb_zip_codes do |t|
3
+ create_table :br_db_zip_codes do |t|
4
4
  t.string :zip_code
5
5
  t.string :street_name
6
6
  t.string :street_additional_info
@@ -1,6 +1,6 @@
1
1
  class CreateBrdbCompanies < ActiveRecord::Migration[8.0]
2
2
  def change
3
- create_table :brdb_companies do |t|
3
+ create_table :br_db_companies do |t|
4
4
  t.string :cnpj
5
5
  t.string :name
6
6
  t.string :legal_name
@@ -1,6 +1,6 @@
1
1
  class CreateBrdbCnaes < ActiveRecord::Migration[8.0]
2
2
  def change
3
- create_table :brdb_cnaes do |t|
3
+ create_table :br_db_cnaes do |t|
4
4
  t.string :code
5
5
  t.string :description
6
6
 
data/lib/br_db/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module BrDb
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.6"
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.4
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ulisses Caon