xapian_db 1.3.4 → 1.3.5

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
  SHA1:
3
- metadata.gz: 629bfb4aa9ec303fad2535c704879fa91a3130e2
4
- data.tar.gz: 70f8b7b084498b194891372992ec54cddcf8c51e
3
+ metadata.gz: a5a458e6c5f807a089ea34ea91540c095049a046
4
+ data.tar.gz: 66bc5684400514aa2f63dc9444818c26eff51712
5
5
  SHA512:
6
- metadata.gz: 5e1d4a205c21a0e988ba43cace4d94921f5375f91d130845c8207152397f92f394e606be71d88684253ce22f9814c01fa030b6afb83efd8c35970ca0a2cdb369
7
- data.tar.gz: 6b4785131589a8110202a805c8711dc1ac7b765af193d41ee22c0fa6245eb4e023fdee582e2e1e60e725bf40412de9bdab7bca3db6b636f222c5a64f3e9b7d31
6
+ metadata.gz: bff6ac2e547a3acf7bca24fa5280e78bed0bf850af35cfdae083f0ea053db91d3b8881e40b869f7fbadead3658ca41cac71dba01caaa210d5c2ca7badf886968
7
+ data.tar.gz: 45ac15e5c3b513579a0fdbd3bb83555abf8ee2695e0c98057550189d00626ee372352262ab567a757e189a76fad9812e00d06a60bf51f72cf430d0bdf07dbb14
data/CHANGELOG.md CHANGED
@@ -1,10 +1,16 @@
1
+ ##1.3.5 (August 3rd, 2013)
2
+
3
+ Changes:
4
+
5
+ - Rails4 deprecation resolved
6
+ - licence information added tot the gemspec
7
+
1
8
  ##1.3.4 (July 26th, 2013)
2
9
 
3
10
  Changes:
4
11
 
5
12
  - support for sidekiq queues
6
13
 
7
-
8
14
  ##1.3.3.1 (June 23th, 2013)
9
15
 
10
16
  Fixes:
@@ -70,7 +70,7 @@ module XapianDb
70
70
  # Process the objects in batches to reduce the memory footprint
71
71
  nr_of_batches = (obj_count / BATCH_SIZE) + 1
72
72
  nr_of_batches.times do |batch|
73
- base_query.all(:offset => batch * BATCH_SIZE, :limit => BATCH_SIZE, :order => klass.order_condition(primary_key)).each do |obj|
73
+ base_query.offset(batch * BATCH_SIZE).limit(BATCH_SIZE).order(klass.order_condition(primary_key)).each do |obj|
74
74
  reindex obj, false
75
75
  pbar.increment if show_progressbar
76
76
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xapian_db
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.4
4
+ version: 1.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gernot Kogler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-26 00:00:00.000000000 Z
11
+ date: 2013-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: daemons
@@ -222,7 +222,8 @@ files:
222
222
  - CHANGELOG.md
223
223
  - Rakefile
224
224
  homepage: https://github.com/garaio/xapian_db
225
- licenses: []
225
+ licenses:
226
+ - MIT
226
227
  metadata: {}
227
228
  post_install_message:
228
229
  rdoc_options: