win32_ssl_init 0.1.3 → 0.1.4
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/lib/win32_ssl_init/cli.rb +1 -1
- data/lib/win32_ssl_init/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01b0ab91ec41db6898764a9e0ae38bec2ab149b180046e64be05f0b386050841
|
4
|
+
data.tar.gz: 6c817632f2cce6b10ab24971331eaf27016c0b588827c3907ca5048443f70d9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a7fffb3b7ae1e77107277657272bc35673fdc88c5e70d5b75094358d4160d0f0dca34a79562a75336152dad6764e98e6c2027b5b881984a6ce9346b7106cfae
|
7
|
+
data.tar.gz: 4855fbb618f804a8e39942380daf2a92121df464f7278ad3eb43f87c70f5fd3d8ca50dff9c94cf1be5c5d7cad056f55078bb0300aa5884ce5e46452135a92c7a
|
data/lib/win32_ssl_init/cli.rb
CHANGED
@@ -25,7 +25,7 @@ module Win32SSLInit
|
|
25
25
|
end
|
26
26
|
|
27
27
|
def ruby_ssl_cert_folder
|
28
|
-
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.2.0')
|
28
|
+
if (Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.2.0')) && (Gem::Version.new(RUBY_VERSION) < Gem::Version.new('3.4.0'))
|
29
29
|
"#{ruby_instance}/bin/etc/ssl/certs/"
|
30
30
|
else
|
31
31
|
"#{ruby_instance}/ssl/certs/"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: win32_ssl_init
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lridge
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.4.
|
72
|
+
rubygems_version: 3.4.19
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Tool to pull windows certs and inject them into your ruby's openssl store
|