grape-listing 1.2.0 → 1.2.1

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: bb778ae3f53f8f3703261e1eb87f7c35ff443841630966a81ce6d30a85927101
4
- data.tar.gz: a20c1c499e21021c1b4947f7e4cc2a44bb966ee498d3231503dcedb6e378a1bd
3
+ metadata.gz: ba00678e6ce8506dd80ac31e49dda56058cbb7ad385f2264018e18e9d9279632
4
+ data.tar.gz: a622910e11b063da43d43edcde6a76d40e66affeb53b3ce490ef0900d6012c54
5
5
  SHA512:
6
- metadata.gz: '084ce80e719db7ea9e9f0d583f47777e0ec830f490b209f989aa2ff9ac23ea7827dd5a0e077f89fdb10192f2978fbbbafef037ee806a2808ae30eff62f5f648c'
7
- data.tar.gz: 34ceba64869852554488007521cb94fc171180b28e2da1aaea6f0cb0febafe5a2a87a47d05c8aa4958ee44b42f2f584d0e547585ee2820bd13e4104c6ff18839
6
+ metadata.gz: e2acc4de1f0cfd8406ffd4aa237df70b3058fba8a3d30ce0397aa4b617d6280a9a780c91f77c5d0f3e852f41bbf87b0875ef8582796ab1916d4f65eda4134d86
7
+ data.tar.gz: ccb7b6dfe1251b06760f39a7de49da40aed8ab31960d481536ec7b7cd59df32b5d21b173a7bb374a8247295c33a286e31e093090c9e1a8049b81dabfa090b155
@@ -46,10 +46,7 @@ module GrapeListing
46
46
  end
47
47
 
48
48
  def caching_entity_representation(record)
49
- # формирование ключа кеширования с параметрами
50
- params_string = Rack::Utils.build_query(@params.except('offset', 'page'))
51
- key = "#{@grape_entity}:#{record.id}:#{params_string}"
52
- enc_key = Digest::MD5.hexdigest(key)
49
+ key = "#{@grape_entity}:#{record.id}"
53
50
 
54
51
  # опции кеширования
55
52
  opts =
@@ -59,7 +56,7 @@ module GrapeListing
59
56
  {}
60
57
  end
61
58
 
62
- GrapeListing.cache.fetch(enc_key, opts) do
59
+ GrapeListing.cache.fetch(key, opts) do
63
60
  @grape_entity.represent(record, @entity_opts).as_json
64
61
  end
65
62
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grape-listing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Павел Бабин