eventmachine-le 1.1.4.beta.2 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +4 -3
- data/lib/em/connection.rb +1 -1
- data/lib/em/version.rb +1 -1
- metadata +10 -10
data/README.md
CHANGED
@@ -59,17 +59,18 @@ the following features/fixes have been applied in EventMachine-LE:
|
|
59
59
|
* `EM::Protocols::SmtpServer`: support multiple messages per one connection and login auth type ([bogdan](https://github.com/eventmachine/eventmachine/pull/288)).
|
60
60
|
* Reimplement `EM::Queue` to avoid shift/push performance problem ([grddev](https://github.com/eventmachine/eventmachine/pull/311)).
|
61
61
|
* Many code cleanups.
|
62
|
-
* New `EM::Connection` option for
|
62
|
+
* New `EM::Connection` option for `start_tls()` method: `:ssl_version` (valid values are `:SSLv23`, `:SSLv3` and `:TLSv1`, default value is `:SSLv23`).
|
63
|
+
* New `EM::Connection` option for `start_tls()` method: `:cipher_list` (valid values are any [OpenSSL cipher string](http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT), default value is `"ALL:!ADH:!LOW:!EXP:!DES-CBC3-SHA:@STRENGTH"`).
|
63
64
|
|
64
65
|
|
65
66
|
## Installation ##
|
66
67
|
|
67
|
-
The Current stable version is eventmachine-le-1.1.
|
68
|
+
The Current stable version is eventmachine-le-1.1.4 (published as Ruby Gem), installable via:
|
68
69
|
<pre>
|
69
70
|
gem install eventmachine-le
|
70
71
|
</pre>
|
71
72
|
|
72
|
-
If you want the beta version (not fully tested) install it by using `--pre` option:
|
73
|
+
If you want the last beta version (not fully tested) install it by using `--pre` option:
|
73
74
|
<pre>
|
74
75
|
gem install eventmachine-le --pre
|
75
76
|
</pre>
|
data/lib/em/connection.rb
CHANGED
@@ -393,7 +393,7 @@ module EventMachine
|
|
393
393
|
# If true, the {#ssl_verify_peer} callback on the {EventMachine::Connection} object is called with each certificate
|
394
394
|
# in the certificate chain provided by the peer. See documentation on {#ssl_verify_peer} for how to use this.
|
395
395
|
#
|
396
|
-
# @option args [Symbol] :ssl_version (:SSLv23) indicates the version of SSL to use. Valid values are :SSLv23, :SSLv3 and TLSv1. Default value is :SSLv23.
|
396
|
+
# @option args [Symbol] :ssl_version (:SSLv23) indicates the version of SSL to use. Valid values are :SSLv23, :SSLv3 and :TLSv1. Default value is :SSLv23.
|
397
397
|
#
|
398
398
|
# @option args [String] :cipher_list ("ALL:!ADH:!LOW:!EXP:!DES-CBC3-SHA:@STRENGTH") indicates the available SSL cipher values. Default value is "ALL:!ADH:!LOW:!EXP:!DES-CBC3-SHA:@STRENGTH". Check the format of the OpenSSL cipher string at http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT.
|
399
399
|
#
|
data/lib/em/version.rb
CHANGED
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eventmachine-le
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.4
|
5
|
-
prerelease:
|
4
|
+
version: 1.1.4
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Francis Cianfrocca
|
@@ -15,7 +15,7 @@ date: 2012-10-09 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rake-compiler
|
18
|
-
requirement: &
|
18
|
+
requirement: &7634380 !ruby/object:Gem::Requirement
|
19
19
|
none: false
|
20
20
|
requirements:
|
21
21
|
- - ! '>='
|
@@ -23,10 +23,10 @@ dependencies:
|
|
23
23
|
version: 0.7.9
|
24
24
|
type: :development
|
25
25
|
prerelease: false
|
26
|
-
version_requirements: *
|
26
|
+
version_requirements: *7634380
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: yard
|
29
|
-
requirement: &
|
29
|
+
requirement: &7622400 !ruby/object:Gem::Requirement
|
30
30
|
none: false
|
31
31
|
requirements:
|
32
32
|
- - ! '>='
|
@@ -34,10 +34,10 @@ dependencies:
|
|
34
34
|
version: 0.7.2
|
35
35
|
type: :development
|
36
36
|
prerelease: false
|
37
|
-
version_requirements: *
|
37
|
+
version_requirements: *7622400
|
38
38
|
- !ruby/object:Gem::Dependency
|
39
39
|
name: bluecloth
|
40
|
-
requirement: &
|
40
|
+
requirement: &7620680 !ruby/object:Gem::Requirement
|
41
41
|
none: false
|
42
42
|
requirements:
|
43
43
|
- - ! '>='
|
@@ -45,7 +45,7 @@ dependencies:
|
|
45
45
|
version: '0'
|
46
46
|
type: :development
|
47
47
|
prerelease: false
|
48
|
-
version_requirements: *
|
48
|
+
version_requirements: *7620680
|
49
49
|
description: ! 'EventMachine-LE (Live Edition) is a branch of EventMachine (https://github.com/eventmachine/eventmachine).
|
50
50
|
|
51
51
|
|
@@ -373,9 +373,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
373
373
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
374
374
|
none: false
|
375
375
|
requirements:
|
376
|
-
- - ! '
|
376
|
+
- - ! '>='
|
377
377
|
- !ruby/object:Gem::Version
|
378
|
-
version:
|
378
|
+
version: '0'
|
379
379
|
requirements: []
|
380
380
|
rubyforge_project:
|
381
381
|
rubygems_version: 1.8.11
|