eventmachine 0.4.4 → 0.4.5
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/rubymain.cpp +1 -1
- metadata +39 -33
data/ext/rubymain.cpp
CHANGED
@@ -24,9 +24,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
24
24
|
|
25
25
|
*****************************************************************************/
|
26
26
|
|
27
|
-
#include <ruby.h>
|
28
27
|
#include "project.h"
|
29
28
|
#include "eventmachine.h"
|
29
|
+
#include <ruby.h>
|
30
30
|
|
31
31
|
|
32
32
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.
|
2
|
+
rubygems_version: 0.8.11
|
3
3
|
specification_version: 1
|
4
4
|
name: eventmachine
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.4.
|
7
|
-
date: 2006-04-
|
6
|
+
version: 0.4.5
|
7
|
+
date: 2006-04-27 00:00:00 -04:00
|
8
8
|
summary: Ruby/EventMachine socket engine library
|
9
9
|
require_paths:
|
10
|
-
|
11
|
-
|
10
|
+
- lib
|
11
|
+
- ext
|
12
12
|
email: garbagecat10@gmail.com
|
13
13
|
homepage: http://rubyforge.org/projects/eventmachine
|
14
14
|
rubyforge_project:
|
@@ -19,41 +19,47 @@ bindir: bin
|
|
19
19
|
has_rdoc: true
|
20
20
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
21
|
requirements:
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
version: 0.0.0
|
22
|
+
- - ">"
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.0.0
|
26
25
|
version:
|
27
26
|
platform: ruby
|
27
|
+
signing_key:
|
28
|
+
cert_chain:
|
28
29
|
authors: []
|
30
|
+
|
29
31
|
files:
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
32
|
+
- tests/testem.rb
|
33
|
+
- lib/eventmachine.rb
|
34
|
+
- ext/binder.cpp
|
35
|
+
- ext/cmain.cpp
|
36
|
+
- ext/sigs.cpp
|
37
|
+
- ext/rubymain.cpp
|
38
|
+
- ext/sigs.h
|
39
|
+
- ext/ed.cpp
|
40
|
+
- ext/binder.h
|
41
|
+
- ext/em.h
|
42
|
+
- ext/ed.h
|
43
|
+
- ext/project.h
|
44
|
+
- ext/eventmachine.h
|
45
|
+
- ext/em.cpp
|
46
|
+
- ext/extconf.rb
|
47
|
+
- README
|
48
|
+
- RELEASE_NOTES
|
49
|
+
- COPYING
|
48
50
|
test_files:
|
49
|
-
|
51
|
+
- tests/testem.rb
|
50
52
|
rdoc_options: []
|
53
|
+
|
51
54
|
extra_rdoc_files:
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
+
- README
|
56
|
+
- RELEASE_NOTES
|
57
|
+
- COPYING
|
55
58
|
executables: []
|
59
|
+
|
56
60
|
extensions:
|
57
|
-
|
61
|
+
- ext/extconf.rb
|
58
62
|
requirements: []
|
59
|
-
|
63
|
+
|
64
|
+
dependencies: []
|
65
|
+
|