ruby-tls 2.3.2 → 2.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 65bf7fa1fe4990b899521d6e7cece1325dfa2637
4
- data.tar.gz: 4d5300ad133a5b2e1a6b3f4c46f6a5cb7ad4c9a2
3
+ metadata.gz: 38cbb22373f7491d827fc4a025b9876bdc362185
4
+ data.tar.gz: 7f3196ae038b7d74127e42a1094ca2e9e44e364b
5
5
  SHA512:
6
- metadata.gz: f07a654df823c07b10b4b9d43bbbc383dd8c02941e7b2d38bd5a44d184fcbf9be42a344b6e92acc6e9c0e8f9cd2d6f24ce2780739ba8f4da9a3a5ff1ee6b0b82
7
- data.tar.gz: 662eb4f3fdf589307a2570d234204a144471c7a0362fe16d3ade8b206005c6b41df95269d1a5917b01bff3ea83b70a151c601b8a6ac432312e4d9e117eca2417
6
+ metadata.gz: bf66425b0c70535efe45e6580491c5cf32423c131b232ff647b656bd195da06059fcd5075cf1694726de6785a64d51772c9adc22215388cf25f78c4239f7a1b7
7
+ data.tar.gz: 4bd331cc6a150b3f6a5443d49dfd951af82cf1f56f203dac08322c8f8b7c376e69b51d589449002fddb3b0ce3db6b288185edd66d46041a3369c00d7f953177e
@@ -121,8 +121,6 @@ module RubyTls
121
121
  attach_function :TLS_server_method, [], :pointer
122
122
  attach_function :TLS_client_method, [], :pointer
123
123
 
124
- VERSION_SUPPORTED = true
125
-
126
124
  SSL3_VERSION = 0x0300
127
125
  TLS1_VERSION = 0x0301
128
126
  TLS1_1_VERSION = 0x0302
@@ -132,6 +130,7 @@ module RubyTls
132
130
  ANY_VERSION = 0
133
131
  attach_function :SSL_CTX_set_min_proto_version, [:ssl_ctx, :int], :int
134
132
  attach_function :SSL_CTX_set_max_proto_version, [:ssl_ctx, :int], :int
133
+ VERSION_SUPPORTED = true
135
134
  rescue FFI::NotFoundError
136
135
  attach_function :SSLv23_server_method, [], :pointer
137
136
  attach_function :SSLv23_client_method, [], :pointer
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyTls
4
- VERSION = '2.3.2'
4
+ VERSION = '2.3.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-tls
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen von Takach
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-16 00:00:00.000000000 Z
11
+ date: 2017-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi-compiler