lhs 3.3.5 → 3.3.6

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: 5a89f7d4e832c73f0baf1779b95c3fc733839244
4
- data.tar.gz: f53e47a8a72be0508303d36d9da8d5badd212869
3
+ metadata.gz: e6e194ca0104d33690c704260ef36ef265ab9979
4
+ data.tar.gz: 63de1464cea6731ab54c58e01c5ef46d74d6b46c
5
5
  SHA512:
6
- metadata.gz: 29a9c134ed6e62cdd36b63248264b9e488700287010d6b9d66a235995c116fe450be036b97fea9a693ef72a099b6199e5af5a40eef7f7ac393b5027a42e2a71e
7
- data.tar.gz: d2dd785394f5e12ee26b3935af41aae701b1ad8b6fcd7de30c47bdd8ad1b961399364d1fd216a402f7380e86cc195b588d8634d8d051934bfce2068f8a8886ed
6
+ metadata.gz: 71f0954b3bea0a23ba9f8c6169e86df4a92b4d81b8702f3634eeb770b9e989a0b4795703f2de97b533ffd521711fac0a54a5e540426978a55413c83c393f0cce
7
+ data.tar.gz: 84ac812bc020fe427adc6d34ae0d87a1c528701b8cb644da0bfe50b613e7a12dd7eb0bcf00c5c8b046afb024fb6d112cd36cbe729dbb2f89c39479fa8bb0e66b
@@ -15,7 +15,22 @@ class LHS::Record
15
15
  all = []
16
16
  default_max_limit = 100
17
17
  data = request(params: params.merge(limit: default_max_limit))
18
- all.concat(data._raw[:items])
18
+ all.concat(all_items_from(data))
19
+ request_all_the_rest(data, all, params) if data._raw.is_a?(Hash) && data._raw[:total]
20
+ data._record_class.new(LHS::Data.new(all, nil, self))
21
+ end
22
+
23
+ private
24
+
25
+ def all_items_from(data)
26
+ if data._raw.is_a?(Array)
27
+ data._raw
28
+ else
29
+ data._raw[:items]
30
+ end
31
+ end
32
+
33
+ def request_all_the_rest(data, all, params)
19
34
  total_left = data._raw[:total] - data.count
20
35
  limit = data._raw[:limit] || data.count
21
36
  if limit > 0
@@ -25,7 +40,6 @@ class LHS::Record
25
40
  all.concat request(params: params.merge(limit: limit, offset: offset))._raw[:items]
26
41
  end
27
42
  end
28
- data._record_class.new(LHS::Data.new(all, nil, self))
29
43
  end
30
44
  end
31
45
  end
@@ -1,3 +1,3 @@
1
1
  module LHS
2
- VERSION = "3.3.5"
2
+ VERSION = "3.3.6"
3
3
  end
@@ -48,5 +48,21 @@ describe LHS::Collection do
48
48
  expect(all._proxy).to be_kind_of LHS::Collection
49
49
  expect(all.count).to eq 0
50
50
  end
51
+
52
+ it 'alsow works when there is no total in the stubbing' do
53
+ stub_request(:get, %r{/feedbacks}).to_return(body: { items: (1..100).to_a }.to_json)
54
+ all = Record.all
55
+ expect(all).to be_kind_of Record
56
+ expect(all._proxy).to be_kind_of LHS::Collection
57
+ expect(all.count).to eq 100
58
+ end
59
+
60
+ it 'alsow works when there is no key "items" in the stubbing' do
61
+ stub_request(:get, %r{/feedbacks}).to_return(body: (1..100).to_a.to_json)
62
+ all = Record.all
63
+ expect(all).to be_kind_of Record
64
+ expect(all._proxy).to be_kind_of LHS::Collection
65
+ expect(all.count).to eq 100
66
+ end
51
67
  end
52
68
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lhs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.5
4
+ version: 3.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://github.com/local-ch/lhs/graphs/contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-02 00:00:00.000000000 Z
11
+ date: 2016-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lhc