em-socksify 0.3.2 → 0.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
- SHA1:
3
- metadata.gz: 19a64d41d0e5a971e90f49f9d2fff72ef6d332f1
4
- data.tar.gz: b84319d1a48777ee8ab89ea082fc740aeac551d9
2
+ SHA256:
3
+ metadata.gz: 1bdcaaa357cd01961472cabfb999f2e1c9d09ab0e73df4a22cfec9aab6251513
4
+ data.tar.gz: 780cce827092a96a2a9262fba626b1e269eb926810188aa2b46c1548b1c2b381
5
5
  SHA512:
6
- metadata.gz: 3c7d00ccce64723dabb97e63fb51e11c01e879e37246e7641981a489445dd295bbbe9ff1e1a8892a35d0baaaa4cc94370de51e474184e6e192d4270e40805f00
7
- data.tar.gz: a5fa763e7873a624a77e140031f02e84fd4fff1b1037d72dce48790d4e26a65c78db2b26c55b206043c6007d128046a8c16ea4a39b112a8517988857e929c5f8
6
+ metadata.gz: bde0abd29a7245cc824737e75afdf8ff54974b0e77681f626560a6718ed4bb58b52935e4d7f1b35edc8b98a73d6ee5fa4de12889bdc434c05f8affa84f32242c
7
+ data.tar.gz: 4b7a0b52c83779e0297d4ce2f9ee9641ed1d50d3d1449bed066f9d0e1fe6c620873f806d78cfadbab29d19f7eb93d0f35feb2cda9d6146e46a974df7af55f5e3
data/em-socksify.gemspec CHANGED
@@ -15,6 +15,7 @@ Gem::Specification.new do |s|
15
15
 
16
16
  s.rubyforge_project = "em-socksify"
17
17
 
18
+ s.add_dependency "base64"
18
19
  s.add_dependency "eventmachine", ">= 1.0.0.beta.4"
19
20
  s.add_development_dependency "rspec"
20
21
  s.add_development_dependency "rake"
@@ -1,5 +1,5 @@
1
1
  module EventMachine
2
2
  module Socksify
3
- VERSION = "0.3.2"
3
+ VERSION = "0.3.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: em-socksify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Grigorik
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-02 00:00:00.000000000 Z
11
+ date: 2024-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: base64
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: eventmachine
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -61,7 +75,6 @@ extra_rdoc_files: []
61
75
  files:
62
76
  - ".gitignore"
63
77
  - Gemfile
64
- - MIT-LICENSE
65
78
  - README.md
66
79
  - Rakefile
67
80
  - em-socksify.gemspec
@@ -78,7 +91,7 @@ homepage: https://github.com/igrigorik/em-socksify
78
91
  licenses:
79
92
  - MIT
80
93
  metadata: {}
81
- post_install_message:
94
+ post_install_message:
82
95
  rdoc_options: []
83
96
  require_paths:
84
97
  - lib
@@ -93,9 +106,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
106
  - !ruby/object:Gem::Version
94
107
  version: '0'
95
108
  requirements: []
96
- rubyforge_project: em-socksify
97
- rubygems_version: 2.6.11
98
- signing_key:
109
+ rubygems_version: 3.3.26
110
+ signing_key:
99
111
  specification_version: 4
100
112
  summary: Transparent proxy support for any EventMachine protocol
101
113
  test_files:
data/MIT-LICENSE DELETED
@@ -1,10 +0,0 @@
1
- Copyright (c) 2014, Ilya Grigorik and Other Contributors
2
- All rights reserved.
3
-
4
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
-
6
- 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
-
8
- 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9
-
10
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.