pocket_jekyll_auth0 0.1.1 → 0.1.2

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/pocket_jekyll_auth0.rb +4 -4
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a4e2a3be1ff8ac6388d2d22ce6816ad6e4ae2142d753cbde143ec9e22a4ea347
4
- data.tar.gz: 3b49f70764488292e34a39864d27f3c6b92b80274683b652a5d9dafc009c068a
3
+ metadata.gz: 6d928798cbf226e7b58fb87b773cd6ff5bb0cd3f2b84c36eff10143be426f6c2
4
+ data.tar.gz: 4d43d42bde71dd535f5b05489f81c10819f43f03f76a28c76531499bccbe8520
5
5
  SHA512:
6
- metadata.gz: 5f120dfc77adcdc87ad9a346baaf3b1e97b7caf41ee4580f854a1454d012c8a1a5319fdd7899b4f9995bfc1ac49ab388ec44cab9b99826acf37c44aae23350b4
7
- data.tar.gz: 0665e9526581afd9f6be119ac1ff1c883457b6427c0b7cf012b5f70891d5665fc154ed05d43b246ce099821a12c364a8f5459ca34aa07c97e21ec7ba17ec4313
6
+ metadata.gz: 42a3a1fb9720cbc73a51003e661b1badc3c5c55550f0feadb0863908498d96bd8a1fa0aaf111786f92c40bce4cf5b1a034da22c8407c6960730cdb79ac1d364c
7
+ data.tar.gz: e003c00d33218e0cf783c5686f8de400de5497ee1af3409d0639b0985e613c91c25cdcea10313bfca78b5f89ce85c9bd8da7b73884871cdd75efac6271d3568e
@@ -36,7 +36,7 @@ module PocketJekyllAuth0
36
36
  token_object = getTokenObject(config_auth0)
37
37
 
38
38
  if token_object != false
39
- cache = PocketJekyllAuth0.cache
39
+ cache = PocketJekyllAuth0::Tag.cache
40
40
 
41
41
  return cache['token_object'] = token_object
42
42
  end
@@ -45,7 +45,7 @@ module PocketJekyllAuth0
45
45
  end
46
46
 
47
47
  def getFillTokenCache(config_auth0)
48
- cache = PocketJekyllAuth0.cache
48
+ cache = PocketJekyllAuth0::Tag.cache
49
49
 
50
50
  if !cache.key?('token_object')
51
51
  fillTokenCache(config_auth0)
@@ -60,7 +60,7 @@ module PocketJekyllAuth0
60
60
  end
61
61
 
62
62
  def fillPocketList(bearer_token, pocket_api_url, pocket_list_filter)
63
- cache = PocketJekyllAuth0.cache
63
+ cache = PocketJekyllAuth0::Tag.cache
64
64
 
65
65
  url = URI(pocket_api_url)
66
66
 
@@ -107,7 +107,7 @@ module PocketJekyllAuth0
107
107
  end
108
108
 
109
109
  def getFillPocketList(bearer_token, pocket_api_url, pocket_list_filter, cache_timeout)
110
- cache = PocketJekyllAuth0.cache
110
+ cache = PocketJekyllAuth0::Tag.cache
111
111
 
112
112
  if !cache.key?('pocket_list')
113
113
  puts "pocket_list key not in cache. Trying to fill."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pocket_jekyll_auth0
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - playfulcorgi