mumuki-classroom 9.0.1 → 9.0.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
  SHA256:
3
- metadata.gz: 758f9c2cad27a3521fd21607d251b73ba1dccf289d92bb316c3a4b05649e154a
4
- data.tar.gz: d7e093105fb0bb1849bf716382d248ab4417a5779d8786d668312b261cbc7010
3
+ metadata.gz: 660f61a9eaed9fae3598fe7ab0ee1f904e48d7a80f2ed9c6f890f7a31c9952aa
4
+ data.tar.gz: c71104874c5a96c15aa3b5bfbfb32406ad8bb813d5c47c5f43a24e6ae4ea277d
5
5
  SHA512:
6
- metadata.gz: 18e0f05f9cd7b0b7063de7388be63a6bd3f74aed8ca28539c12ee389b9641a93a623ef96461c2156ef61b65a857cfc53fab36e66040183fc3da1f1b25f48408d
7
- data.tar.gz: 7e4a6e42039d6866b1aa57d38892aa47b53d437856d9a670008ef139a275b9a379dfb0d93b02843faf02c160aafe1f8fa0335e5872531c9de03c09eb6bfad33c
6
+ metadata.gz: a84f7b331909322a868e040644f7e573fab48978ab04a8f493097515eadb311866435c65297d64ee9beea49f739eee7ca9406c9606cfc04f05ba6bb75f9cda5c
7
+ data.tar.gz: 722219c2b000e2c68a3695cc1c1e692c310beffb3bb764cbd4b30516a4d7f69aff8a269324960c0c023eb75565b8057497800254650caa9fca84f9d144256926
@@ -17,8 +17,8 @@ module Reporting
17
17
  main_pipeline << {'$match': query}
18
18
  main_pipeline.concat searching.pipeline
19
19
  main_pipeline.concat sorting.pipeline
20
- main_pipeline << {'$project': projection}
21
20
  main_pipeline << {'$sort': sorting.order_by(ordering)}
21
+ main_pipeline << {'$project': projection}
22
22
  end
23
23
 
24
24
  end
@@ -2,7 +2,7 @@ module Sorting
2
2
 
3
3
  def self.aggregate(collection, query, paginated_params, query_params)
4
4
  reporting_pipeline = Reporting.build_pipeline(collection, query, paginated_params, query_params, projection)
5
- query = collection.collection.aggregate(pipeline paginated_params, reporting_pipeline).first
5
+ query = collection.collection.aggregate(pipeline(paginated_params, reporting_pipeline), allow_disk_use: true).first # Must allow disk use for sorting large collections by non-index
6
6
  query_results(query)
7
7
  end
8
8
 
@@ -1,5 +1,5 @@
1
1
  module Mumuki
2
2
  module Classroom
3
- VERSION = '9.0.1'
3
+ VERSION = '9.0.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mumuki-classroom
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.0.1
4
+ version: 9.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Franco Bulgarelli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails