dina 1.3.4.0 → 1.3.5.0

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: 160bb1cad90fec5edd805e774e344e0cf316fc2b3c64865a127a067521bd3a04
4
- data.tar.gz: 413d7a21ce4f362a5a7abdfa8d9442e5b349b9766cd0cdef150458adb28f4da5
3
+ metadata.gz: 40aecf4e774bc94c44792c675a7ec4feeb89a532fbd03f6d6413a4cea5e4eb43
4
+ data.tar.gz: bd816ce82e2bbb80f0328b25ef3c6950ed13e88ceddc2bdba94c4c3d0e56f27c
5
5
  SHA512:
6
- metadata.gz: c681eedec4374f64c3c3e834f807168416f00483b0ed7668c03808f5f69b7f2e81b60057b4aeb51c7dedd2896bdb04e2cc4a1360195c5e7b122eb33a8b3f9d8a
7
- data.tar.gz: 1efa72bb5e4c5e99a6dc4d07e46b6dce4410fc6d6b55d1e158dbd05f1daaacfedac4e1b3dcec8b1536ba8a9cbf50b15e2d4b2213a32b76f01fe8ec1c5ae89769
6
+ metadata.gz: '039926da4bd1c3d4e8040a8439d8d609862615438efa92f5e373548a81939961221b2358ab7cc29723686c35cd815187d6205ccf49ceb4887cc019a13423a015'
7
+ data.tar.gz: 80b22bf203cbe6fe178cbf2cd3f19301b6d84c3c18744462203b21419d2d031cbf95985a70e1234a0b4a690d6a246a476694ececc71acee4321c3b451750f44f
@@ -1,13 +1,12 @@
1
- # Keycloak Client depends on RestClient & so verifying SSL must be accommodate here
1
+ # Keycloak Client depends on RestClient & so verifying SSL must be accommodated here
2
+ # Not a great solution, ideally should be initialized prior to calling Keycloak::Client.get_token
2
3
 
3
4
  module RestClient
4
5
  class Request
5
6
  orig_initialize = instance_method(:initialize)
6
7
 
7
8
  define_method(:initialize) do |args|
8
- if Dina.config.verify_ssl == false
9
- args[:verify_ssl] = false
10
- end
9
+ args[:verify_ssl] = false
11
10
  orig_initialize.bind(self).(args)
12
11
  end
13
12
  end
data/lib/dina/version.rb CHANGED
@@ -3,7 +3,7 @@ module Dina
3
3
 
4
4
  MAJOR = 1
5
5
  MINOR = 3
6
- PATCH = 4
6
+ PATCH = 5
7
7
  BUILD = 0
8
8
 
9
9
  def self.version
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dina
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.4.0
4
+ version: 1.3.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David P. Shorthouse