lockstep_rails 0.3.55 → 0.3.56

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: 4300a420b24f44e242a2216a752c818981f1693996a9147138f90304aea3fbf6
4
- data.tar.gz: 9221a99ef7d3c2f96c39b563a975095a357dd024c3168a2bdf154e2547ca3d66
3
+ metadata.gz: f004f3fc636bc3aa132570664bd8536bcd2143204f6234e71be19876027cf8a2
4
+ data.tar.gz: 58753bea6eddae06522c57dc92af31a4a7cd715805142fc78731d8f5ad2f11ab
5
5
  SHA512:
6
- metadata.gz: 0b975efb8ff66593f6796ea67c2272b521fc90b9f9509c8a6ed983afd248494457574c86d896a3ad645e4828bed50f648bac44241a0e74ed759f8ed6267067a1
7
- data.tar.gz: f64a573c6b0fff3f49029caf82954c4b50a137ea66b703ad0091ea74a9363c43b18ba84f412fc8b58bc517179d133467ffe59777a5a222d17115ede0cf096560
6
+ metadata.gz: a0fce44761660638e91efd5aa5b183e22ff1772bea8d6fa3ba462fce23a4c684b385f72529858cbc5a0a3058b5d30754aa89389e4d394e6496794bc12f13b326
7
+ data.tar.gz: d67c11238d5936c4e6af3b65e88e226ca11908f03220101e9f442f6cc7ca91f6402dc154adc2bdd0ebec75ae7bafb06640ab51614e5f8700e43f2b87b2706fbc
@@ -92,6 +92,12 @@ class Lockstep::Query
92
92
  end
93
93
  end
94
94
 
95
+ def with_count(value)
96
+ with_clone do
97
+ criteria[:with_count] = value
98
+ end
99
+ end
100
+
95
101
  # attr: {customer_name: :desc}
96
102
  def order(*attr)
97
103
  with_clone do
@@ -242,13 +248,21 @@ class Lockstep::Query
242
248
  else
243
249
  results = parsed_response.is_a?(Array) ? parsed_response : parsed_response["records"]
244
250
  return [] if results.blank?
245
-
246
251
  results = results[0..(criteria[:limit] - 1)] if criteria[:limit]
247
- get_relation_objects results.map { |r|
252
+ records = get_relation_objects results.map { |r|
248
253
  # Convert camelcase to snake-case
249
254
  r = r.transform_keys { |key| key.underscore }
250
255
  @klass.model_name.to_s.constantize.new(r, false)
251
256
  }
257
+
258
+ if criteria[:with_count]
259
+ {
260
+ records: records,
261
+ total_count: parsed_response["totalCount"]
262
+ }
263
+ else
264
+ records
265
+ end
252
266
  end
253
267
  end
254
268
 
@@ -1,3 +1,3 @@
1
1
  module LockstepRails
2
- VERSION = '0.3.55'
2
+ VERSION = '0.3.56'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lockstep_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.55
4
+ version: 0.3.56
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vivek AG
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-22 00:00:00.000000000 Z
11
+ date: 2023-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails