tangocard 7.0.2 → 7.0.3

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: 4460feb6c9829bf987ebcee0a5f3bd0b0f045eda
4
- data.tar.gz: 2e06c8a3d60c2ffd149b6e0312f5ea0934da3ec9
3
+ metadata.gz: fe68bea91e8149fff8cded0b815326d6eb8fc339
4
+ data.tar.gz: 7d8b0126a60066f9887ae74ecf9460836937ab04
5
5
  SHA512:
6
- metadata.gz: 647a675699b4fec0423e3d174c28cc532994c2a924c252bab09e33455fb42d7a7b7013d02929cf7b9569a3fd8bcf2b5632c0aafcbe55d44b9e02b94b67e3c846
7
- data.tar.gz: a9a36089994b9fec78ba489315da6534fd14a32d85cdc8676fd6226a011559f5275acebc64ac5902da20fbd5522522f6c16e3522740aa5931e5daee0305800df
6
+ metadata.gz: 455d5024358cf9aa46d6ac0e09f94b40c56e34aa8c39b44d1cfc7fb6f03398f0b0c8404c28cdf49cae408d4eac336f3e7d0c73bd5eeabb8567cdfd7c91fd9a5f
7
+ data.tar.gz: 689e8698c3e5e3e176dfc1cfc260462f7c8d61b1747b88c38f2653aecd8824d6308071d418978244d4cbe961d2635b9bb79aa7b3a721734972a8853a96a75015
@@ -71,7 +71,9 @@ class Tangocard::Raas
71
71
  # none
72
72
  def self.rewards_index(use_cache: true)
73
73
  if Tangocard.configuration.use_cache && use_cache
74
- Tangocard.configuration.cache.read("#{Tangocard::CACHE_PREFIX}rewards_index")
74
+ cached_response = Tangocard.configuration.cache.read("#{Tangocard::CACHE_PREFIX}rewards_index")
75
+ raise Tangocard::RaasException.new('Tangocard cache is not primed. Either configure the gem to run without caching or warm the cache before calling cached endpoints') if cached_response.nil?
76
+ cached_response
75
77
  else
76
78
  Tangocard::Response.new(get_request('/rewards'))
77
79
  end
@@ -1,3 +1,3 @@
1
1
  module Tangocard
2
- VERSION = '7.0.2'
2
+ VERSION = '7.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tangocard
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.2
4
+ version: 7.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Raphael Crawford-Marks