activerecord_reindex 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50603db7430947a1e91993abcc1b1046dfa6a7bb
4
- data.tar.gz: 2761c3c15c259f1fe3ea7f2684eefb4a6964f462
3
+ metadata.gz: 6508847b036e9191ba24d150c3ca6fd3aff0d147
4
+ data.tar.gz: 1a73c90b46cb0b0f76ddad37e2451737b1f53112
5
5
  SHA512:
6
- metadata.gz: f22021a55a34ce83c2ef2a1aeae36d0c313083b63981cd83d1e31136c305c6be31d0bc71db60de6cb97ff703eb768a6ed32888be543140cd3bfb5a77619ae926
7
- data.tar.gz: 88724ede85f28f6cb4098945ffedc11b5360240b1d1b12b9d380a0637402ae534fccbca4e839cf82291604a78a0f58d39ad460e990a3f319c9997b703f226fbf
6
+ metadata.gz: 583b1b18878781670b7180cdb15453e7e0306b46dbc30f3f3655e638f2e7108e367818ed6b3b8d6b0f6c4f17db28214a1512607b6d8e39101cf89d894d27ebe2
7
+ data.tar.gz: 6d5367d14ca8223e851c8d6a98b26102db0cf48db5562c8351c4f5c2a673679d08fcebec36e307db52a2e7cdf56be78ac615d7045b519e945846ce6e92dd40f8
@@ -1,13 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
  # author: Vadim Shaveiko <@vshaveyko>
3
3
 
4
- # Asyncronouse reindex adapter
5
- # uses Jobs for reindexing records asyncronously
6
- # Using ActiveJob as dependency bcs activerecord is required for this so
7
- # in most cases it would be used with rails hence with ActiveJob
8
- # later can think about adding support for differnt job adapters
9
4
  require_relative 'adapter'
10
5
  module ActiverecordReindex
6
+ # Asyncronouse reindex adapter
7
+ # uses Jobs for reindexing records asyncronously
8
+ # Using ActiveJob as dependency bcs activerecord is required for this so
9
+ # in most cases it would be used with rails hence with ActiveJob
10
+ # later can think about adding support for differnt job adapters
11
11
  class AsyncAdapter < Adapter
12
12
 
13
13
  # Job wrapper. Queues elastic_index queue for each reindex
@@ -34,7 +34,7 @@ module ActiverecordReindex
34
34
  # we will skip it in associations reindex to prevent recursive reindex and StackLevelTooDeep error
35
35
  def call(record, request_record)
36
36
  return unless _check_elasticsearch_connection(record.class)
37
- UpdateJob.perform_later(record.class, record.id, request_record.class, request_record.id)
37
+ UpdateJob.perform_later(record.class.to_s, record.id, request_record.class.to_s, request_record.id)
38
38
  end
39
39
 
40
40
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  # author: Vadim Shaveiko <@vshaveyko>
3
3
  module ActiverecordReindex
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord_reindex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - vs