ntq_excelsior_engine 1.0.3 → 1.0.4

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: 149fb970b09822b3700a0feea155925cc053758cad0293d60511cefd33d3b774
4
- data.tar.gz: 871c628686c6ead3c67ffd5a86d3c0596e87d56796671c272f43c85ee4a4b45f
3
+ metadata.gz: 05fe195599b4a42715271f7f82450a948581d781e7ee6bc1a7b255edcc57e386
4
+ data.tar.gz: 9e473e0a7c2478a9f5f0aa17ccf90ba0f5deec883333ccc1b8a88864b833d6bd
5
5
  SHA512:
6
- metadata.gz: 97f6391929e87d982d1c10b71335d75600b84851bcc2823a5e4c8fd63b239cfb7054d5a876b93dc277b832d0b8a1fb7ddd2115d946e37502b9e181b5b30be26e
7
- data.tar.gz: 165b172c9ad7d47a1aff11a0a2d66da3ea161462f3fc2de5c142bc9759a512697d89f64dae316543877ff9a86c668834ad06c1a0a06559831b21ac30809adfcd
6
+ metadata.gz: a66e547455c8fdb704d0ac621f016e439b988ee3c6f2c86c7e135d130a9e5c14c823a4a2e1dc784905c494d353ae6287b504c9b8994f2356467483b8ea099446
7
+ data.tar.gz: b4e381c57b8cefae051e765e6b738d0d7b86a87a9b2505cdf490de0334ee57bda780cece34297ca33ed65793b786ab023140fe108ae133b7a4bc9c78c1c1e220
@@ -13,10 +13,12 @@ module NtqExcelsiorEngine
13
13
  importer = context.importer.new
14
14
  begin
15
15
  import.update(state: 'importing')
16
+ importer.class.before.call(importer.context, importer.options) if importer.class.before.is_a?(Proc)
16
17
  import.import_lines.find_each(batch_size: 1000) do |line|
17
18
  result = importer.import_line(line.line, save: true)
18
19
  line.update(status: result[:status], line_errors: result[:errors], action: result[:action])
19
20
  end
21
+ importer.class.after.call(importer.context, importer.options) if importer.class.after.is_a?(Proc)
20
22
  sleep 2 if NtqExcelsiorEngine.debug
21
23
  stats = {
22
24
  count: import.import_lines.count,
@@ -1,3 +1,3 @@
1
1
  module NtqExcelsiorEngine
2
- VERSION = '1.0.3'
2
+ VERSION = '1.0.4'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ntq_excelsior_engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-29 00:00:00.000000000 Z
11
+ date: 2024-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails