renet 0.1.6-universal-darwin → 0.1.7-universal-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ext/renet/{enet/callbacks.c → callbacks.c} +0 -0
- data/ext/renet/{enet/callbacks.h → callbacks.h} +0 -0
- data/ext/renet/{enet/compress.c → compress.c} +0 -0
- data/ext/renet/{enet/enet.h → enet.h} +0 -0
- data/ext/renet/{enet/host.c → host.c} +0 -0
- data/ext/renet/{enet/list.c → list.c} +0 -0
- data/ext/renet/{enet/list.h → list.h} +0 -0
- data/ext/renet/{enet/packet.c → packet.c} +0 -0
- data/ext/renet/{enet/peer.c → peer.c} +0 -0
- data/ext/renet/{enet/protocol.c → protocol.c} +0 -0
- data/ext/renet/{enet/protocol.h → protocol.h} +0 -0
- data/ext/renet/renet.c +1 -1
- data/ext/renet/{enet/time.h → time.h} +0 -0
- data/ext/renet/{enet/types.h → types.h} +0 -0
- data/ext/renet/{enet/unix.c → unix.c} +0 -0
- data/ext/renet/{enet/unix.h → unix.h} +0 -0
- data/ext/renet/{enet/utility.h → utility.h} +0 -0
- data/ext/renet/{enet/win32.c → win32.c} +0 -0
- data/ext/renet/{enet/win32.h → win32.h} +0 -0
- metadata +21 -23
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/ext/renet/renet.c
CHANGED
@@ -30,7 +30,7 @@ void Init_renet()
|
|
30
30
|
init_renet_connection();
|
31
31
|
init_renet_server();
|
32
32
|
rb_define_const(mENet, "ENET_VERSION", rb_str_new2("1.3.0"));
|
33
|
-
rb_define_const(mENet, "RENET_VERSION", rb_str_new2("0.1.
|
33
|
+
rb_define_const(mENet, "RENET_VERSION", rb_str_new2("0.1.7"));
|
34
34
|
}
|
35
35
|
|
36
36
|
VALUE renet_main_initialize(VALUE self)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: renet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
prerelease:
|
6
6
|
platform: universal-darwin
|
7
7
|
authors:
|
@@ -9,8 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-07-05 00:00:00.
|
13
|
-
default_executable:
|
12
|
+
date: 2011-07-05 00:00:00.000000000Z
|
14
13
|
dependencies: []
|
15
14
|
description: Ruby library for games networking. Uses ENet as backend
|
16
15
|
email: dark.wolf.warrior@gmail.com
|
@@ -23,32 +22,31 @@ files:
|
|
23
22
|
- lib/renet.rb
|
24
23
|
- examples/Console-Server.rb
|
25
24
|
- examples/Gosu-Client.rb
|
26
|
-
- ext/renet/
|
27
|
-
- ext/renet/enet
|
28
|
-
- ext/renet/
|
29
|
-
- ext/renet/
|
30
|
-
- ext/renet/enet/time.h
|
31
|
-
- ext/renet/enet/types.h
|
32
|
-
- ext/renet/enet/unix.h
|
33
|
-
- ext/renet/enet/utility.h
|
34
|
-
- ext/renet/enet/win32.h
|
25
|
+
- ext/renet/callbacks.h
|
26
|
+
- ext/renet/enet.h
|
27
|
+
- ext/renet/list.h
|
28
|
+
- ext/renet/protocol.h
|
35
29
|
- ext/renet/renet.h
|
36
30
|
- ext/renet/renet_connection.h
|
37
31
|
- ext/renet/renet_server.h
|
38
|
-
- ext/renet/
|
39
|
-
- ext/renet/
|
40
|
-
- ext/renet/
|
41
|
-
- ext/renet/
|
42
|
-
- ext/renet/
|
43
|
-
- ext/renet/
|
44
|
-
- ext/renet/
|
45
|
-
- ext/renet/
|
46
|
-
- ext/renet/
|
32
|
+
- ext/renet/time.h
|
33
|
+
- ext/renet/types.h
|
34
|
+
- ext/renet/unix.h
|
35
|
+
- ext/renet/utility.h
|
36
|
+
- ext/renet/win32.h
|
37
|
+
- ext/renet/callbacks.c
|
38
|
+
- ext/renet/compress.c
|
39
|
+
- ext/renet/host.c
|
40
|
+
- ext/renet/list.c
|
41
|
+
- ext/renet/packet.c
|
42
|
+
- ext/renet/peer.c
|
43
|
+
- ext/renet/protocol.c
|
47
44
|
- ext/renet/renet.c
|
48
45
|
- ext/renet/renet_connection.c
|
49
46
|
- ext/renet/renet_server.c
|
47
|
+
- ext/renet/unix.c
|
48
|
+
- ext/renet/win32.c
|
50
49
|
- ext/renet/extconf.rb
|
51
|
-
has_rdoc: true
|
52
50
|
homepage: https://github.com/Dahrkael/rENet
|
53
51
|
licenses: []
|
54
52
|
post_install_message:
|
@@ -69,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
67
|
version: '0'
|
70
68
|
requirements: []
|
71
69
|
rubyforge_project:
|
72
|
-
rubygems_version: 1.5
|
70
|
+
rubygems_version: 1.8.5
|
73
71
|
signing_key:
|
74
72
|
specification_version: 3
|
75
73
|
summary: Ruby library for games networking. Uses ENet as backend
|