rubyment 0.6.25504825 → 0.6.25508748
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/rubyment.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 014f934b67456640493437668f548bd3041c0f87
|
4
|
+
data.tar.gz: 8545131bc2dd3d658f29a5f0291dccd61957ceef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7388cb87f8d81dcc7f717d7524b9dcaaba03376edebbf89d3010b5783290e91a1f0fb9aa719d8852509db95a570df0063014d1153ef5f3cb6d42b64ca967bb5b
|
7
|
+
data.tar.gz: 469786fe31e316978989f04214ec5316cb9ef11a8fc2d1a8aa9c151e4b95854f03678ee547e29919dbb1bb0106d1f8be150ba869df064b2b9653e6daa9737519
|
data/lib/rubyment.rb
CHANGED
@@ -2524,7 +2524,7 @@ require '#{gem_name}'
|
|
2524
2524
|
# +admit_plain+:: [Boolean] if +true+, tries to create a normal +TCPServer+, if not possible to create +SSLServer+ (default: +false+, for preventing unadvertnt non-SSL server creation)
|
2525
2525
|
# +debug+:: [Object] for future use
|
2526
2526
|
# +priv_pemfile+:: [String] argument to be given to +OpenSSL::SSL::SSLContext.key+ method, after calling +OpenSSL::PKey::RSA.new+ with it. It's the private key file. letsencrypt example: +"/etc/letsencrypt/live/#{domain}/privkey.pem"+ (now it's accepted to pass the file contents instead, both must work).
|
2527
|
-
# +cert_pem_file+:: [String] argument to be given to +OpenSSL::SSL::SSLContext.cert+ method, after calling +OpenSSL::X509::Certificate+. It's the "Context certificate" accordingly to its ruby-doc page. letsencrypt example: +"/etc/letsencrypt/live/
|
2527
|
+
# +cert_pem_file+:: [String] argument to be given to +OpenSSL::SSL::SSLContext.cert+ method, after calling +OpenSSL::X509::Certificate+. It's the "Context certificate" accordingly to its ruby-doc page. letsencrypt example: +"/etc/letsencrypt/live/#{domain}/fullchain.pem"+ (now it's accepted to pass the file contents instead, both must work).
|
2528
2528
|
# +extra_cert_pem_files+:: [Array] array of strings. Each string will be mapped with +OpenSSL::SSL::SSLContext.new+, and the resulting array is given to +OpenSSL::SSL::SSLContext.extra_chain_cert+. "An Array of extra X509 certificates to be added to the certificate chain" accordingly to its ruby-doc. letsencryptexample: +["/etc/letsencrypt/live/#{domain}/chain.pem"]+ (now it's accepted to pass the file contents instead, both must work).
|
2529
2529
|
# +output_exception+:: [Bool] output exceptions even if they are admitted?
|
2530
2530
|
#
|