cerner-oauth1a 2.5.0 → 2.5.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 +4 -4
- data/CHANGELOG.md +3 -0
- data/NOTICE +1 -1
- data/README.md +1 -1
- data/lib/cerner/oauth1a/cache.rb +1 -1
- data/lib/cerner/oauth1a/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5080f2da839650783e60c1aeece1b66e1d941e42cb261ca8f1537b01bcdf1631
|
|
4
|
+
data.tar.gz: fac69cde7fdc2008b57edc4ad56f5c8e5acb95953e4b18978ed4c353987ddf2f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f8b24beb10edfc647de6db18cb8dfd59b2c1e85864be8c4b68c9084353805772cc2b51aaec3f9f7c3639ee1d55a14d58a903094c9ace8b6de332a2526b1f812
|
|
7
|
+
data.tar.gz: d909b24d22d1f8c3459d496ab4129bebd15eaf171c4a3fe36459764d40cf8e59e48c4aaf4111a32e5bca427d2a8d381d22caad9c65d0bf90d0cebc7d25aef3be
|
data/CHANGELOG.md
CHANGED
data/NOTICE
CHANGED
data/README.md
CHANGED
|
@@ -211,7 +211,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
|
211
211
|
|
|
212
212
|
# LICENSE
|
|
213
213
|
|
|
214
|
-
Copyright
|
|
214
|
+
Copyright 2020 Cerner Innovation, Inc.
|
|
215
215
|
|
|
216
216
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
|
|
217
217
|
|
data/lib/cerner/oauth1a/cache.rb
CHANGED
|
@@ -16,7 +16,7 @@ module Cerner
|
|
|
16
16
|
# Internal: Gets the singleton instance.
|
|
17
17
|
def self.instance
|
|
18
18
|
@cache_instance_lock.synchronize do
|
|
19
|
-
return @cache_instance if @cache_instance
|
|
19
|
+
return @cache_instance if instance_variable_defined?(:@cache_instance) && @cache_instance
|
|
20
20
|
|
|
21
21
|
@cache_instance = DefaultCache.new(max: 50)
|
|
22
22
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cerner-oauth1a
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.5.
|
|
4
|
+
version: 2.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan Beyer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-02-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
A minimal dependency library for interacting with a Cerner OAuth 1.0a Access
|