algoliasearch-rails 1.13.2 → 1.13.3

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: d17f9c631bb7793f79c443cf09b840651fc3518f
4
- data.tar.gz: 793976c634418b3b9d4fcc81d9d494b0bffb53ec
3
+ metadata.gz: 8b7f82add5e5b9d69d15a2c98c0a4b5f6bac355f
4
+ data.tar.gz: bfcf7d8d3deaf1b99393f454648c9750d6df60ea
5
5
  SHA512:
6
- metadata.gz: a8c1057d5ea3887f0eb84a83f74c4477d39e6e158510020705f24181a80ab7f2037b0ba22cfb55b2d287104e78aaf16e97d81d9d1085f70b168590a5d89c2eb9
7
- data.tar.gz: 164dbc64b11b621b8e9606f108714e9fbd44db20b8e13e575b7c111977576c0263106c3aa719d3fc16ecf874d285f1af2e03f0d1a9b34bc812f6f8493557898a
6
+ metadata.gz: cc09b4f1715def2b2b480b82b579be801e4fdf2220acf03563986d295552120305e97b5e12f689f849b1c08e3e3347e1271a1204ed40f164848acd68b39d2e62
7
+ data.tar.gz: e5fe2fd6effcc305915734c14279e72a4e5b8e27889bb0bd5e9d941a442987824ca34ce6e5c24d30755113823cef31e950b0c31eaa177ce743e39ddb4c24b923
data/ChangeLog CHANGED
@@ -1,5 +1,9 @@
1
1
  CHANGELOG
2
2
 
3
+ 2015-08-05 1.13.3
4
+
5
+ * The `active_job.rb` file was not included in the gem
6
+
3
7
  2015-08-01 1.13.2
4
8
 
5
9
  * Lazy load the `ActiveJob` class to ensure the underlying queuing system is initialized when we actually use it.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.2
1
+ 1.13.3
@@ -29,6 +29,7 @@ Gem::Specification.new do |s|
29
29
  "VERSION",
30
30
  "algoliasearch-rails.gemspec",
31
31
  "lib/algoliasearch-rails.rb",
32
+ "lib/algoliasearch/algolia_job.rb",
32
33
  "lib/algoliasearch/configuration.rb",
33
34
  "lib/algoliasearch/pagination.rb",
34
35
  "lib/algoliasearch/pagination/kaminari.rb",
@@ -0,0 +1,9 @@
1
+ module AlgoliaSearch
2
+ class AlgoliaJob < ::ActiveJob::Base
3
+ queue_as :algoliasearch
4
+
5
+ def perform(record, method)
6
+ record.send(method)
7
+ end
8
+ end
9
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algoliasearch-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.2
4
+ version: 1.13.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Algolia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-01 00:00:00.000000000 Z
11
+ date: 2015-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -129,6 +129,7 @@ files:
129
129
  - VERSION
130
130
  - algoliasearch-rails.gemspec
131
131
  - lib/algoliasearch-rails.rb
132
+ - lib/algoliasearch/algolia_job.rb
132
133
  - lib/algoliasearch/configuration.rb
133
134
  - lib/algoliasearch/pagination.rb
134
135
  - lib/algoliasearch/pagination/kaminari.rb