em-socksify 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: bfb363c6f87e596fef416b628cf8805ed4cbbbbb
4
+ data.tar.gz: 1c6dc0904d53259c818e6d6cb5923a2b262b5677
5
+ SHA512:
6
+ metadata.gz: 70e7c09912c1bcb54de7765ba99854f827a97ffde975e4af4e53210e1b7dd1dffd4b8273b8cfc11d364124297d4a3e535ae389cffd4f0cc06d9c8fac7f735d8a
7
+ data.tar.gz: 06a2d11a2e889584697387859d0dff1f06ce934621b0cf4543e1b435f57f0f5d0edd5ca7bcbb4d01247060525e03a5a2b81fc2dfa1e699691e8a9e9d2d35c748
data/MIT-LICENSE ADDED
@@ -0,0 +1,10 @@
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.
data/em-socksify.gemspec CHANGED
@@ -8,9 +8,10 @@ Gem::Specification.new do |s|
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.authors = ["Ilya Grigorik"]
10
10
  s.email = ["ilya@igvita.com"]
11
- s.homepage = "http://github.com/igrigorik/em-socksify"
11
+ s.homepage = "https://github.com/igrigorik/em-socksify"
12
12
  s.summary = "Transparent proxy support for any EventMachine protocol"
13
13
  s.description = s.summary
14
+ s.license = "MIT"
14
15
 
15
16
  s.rubyforge_project = "em-socksify"
16
17
 
@@ -20,7 +20,7 @@ module EventMachine
20
20
  end
21
21
 
22
22
  connect_unhook
23
- rescue => e
23
+ rescue Exception => e
24
24
  @connect_deferrable.fail e
25
25
  end
26
26
  end
@@ -1,5 +1,5 @@
1
1
  module EventMachine
2
2
  module Socksify
3
- VERSION = "0.3.0"
3
+ VERSION = "0.3.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,62 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: em-socksify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
5
- prerelease:
4
+ version: 0.3.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Ilya Grigorik
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-06-17 00:00:00.000000000 Z
11
+ date: 2015-09-21 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: eventmachine
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: 1.0.0.beta.4
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: 1.0.0.beta.4
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rspec
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: rake
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: '0'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ">="
60
53
  - !ruby/object:Gem::Version
61
54
  version: '0'
62
55
  description: Transparent proxy support for any EventMachine protocol
@@ -66,8 +59,9 @@ executables: []
66
59
  extensions: []
67
60
  extra_rdoc_files: []
68
61
  files:
69
- - .gitignore
62
+ - ".gitignore"
70
63
  - Gemfile
64
+ - MIT-LICENSE
71
65
  - README.md
72
66
  - Rakefile
73
67
  - em-socksify.gemspec
@@ -80,31 +74,30 @@ files:
80
74
  - lib/em-socksify/version.rb
81
75
  - spec/helper.rb
82
76
  - spec/socksify_spec.rb
83
- homepage: http://github.com/igrigorik/em-socksify
84
- licenses: []
77
+ homepage: https://github.com/igrigorik/em-socksify
78
+ licenses:
79
+ - MIT
80
+ metadata: {}
85
81
  post_install_message:
86
82
  rdoc_options: []
87
83
  require_paths:
88
84
  - lib
89
85
  required_ruby_version: !ruby/object:Gem::Requirement
90
- none: false
91
86
  requirements:
92
- - - ! '>='
87
+ - - ">="
93
88
  - !ruby/object:Gem::Version
94
89
  version: '0'
95
90
  required_rubygems_version: !ruby/object:Gem::Requirement
96
- none: false
97
91
  requirements:
98
- - - ! '>='
92
+ - - ">="
99
93
  - !ruby/object:Gem::Version
100
94
  version: '0'
101
95
  requirements: []
102
96
  rubyforge_project: em-socksify
103
- rubygems_version: 1.8.24
97
+ rubygems_version: 2.4.5
104
98
  signing_key:
105
- specification_version: 3
99
+ specification_version: 4
106
100
  summary: Transparent proxy support for any EventMachine protocol
107
101
  test_files:
108
102
  - spec/helper.rb
109
103
  - spec/socksify_spec.rb
110
- has_rdoc: