ruby-sdl2 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/README.md +5 -6
- data/Rakefile +13 -0
- data/clipboard.c +24 -0
- data/event.c +216 -5
- data/filesystem.c +27 -0
- data/gamecontroller.c +244 -30
- data/gamecontroller.c.m4 +408 -0
- data/gl.c.m4 +159 -9
- data/hint.c +51 -8
- data/key.c.m4 +6 -0
- data/lib/sdl2/version.rb +2 -2
- data/messagebox.c +40 -38
- data/mixer.c +138 -21
- data/mixer.c.m4 +1196 -0
- data/mouse.c +5 -5
- data/sample/message_box.rb +5 -5
- data/sample/primitives.rb +1 -1
- data/sample/test_video.rb +3 -3
- data/sample/testgl.rb +1 -1
- data/sample/testsprite.rb +5 -5
- data/ttf.c +193 -14
- data/ttf.c.m4 +375 -0
- data/video.c.m4 +465 -122
- metadata +6 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-sdl2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ippei Obayashi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
Ruby/SDL2 is an extension library to use SDL 2.x
|
@@ -35,6 +35,7 @@ files:
|
|
35
35
|
- extconf.rb
|
36
36
|
- filesystem.c
|
37
37
|
- gamecontroller.c
|
38
|
+
- gamecontroller.c.m4
|
38
39
|
- gl.c
|
39
40
|
- gl.c.m4
|
40
41
|
- hint.c
|
@@ -46,6 +47,7 @@ files:
|
|
46
47
|
- main.c
|
47
48
|
- messagebox.c
|
48
49
|
- mixer.c
|
50
|
+
- mixer.c.m4
|
49
51
|
- mouse.c
|
50
52
|
- rubysdl2_internal.h
|
51
53
|
- sample/chunk_destroy.rb
|
@@ -73,6 +75,7 @@ files:
|
|
73
75
|
- sample/video_info.rb
|
74
76
|
- timer.c
|
75
77
|
- ttf.c
|
78
|
+
- ttf.c.m4
|
76
79
|
- video.c
|
77
80
|
- video.c.m4
|
78
81
|
homepage: https://github.com/ohai/ruby-sdl2
|
@@ -95,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
98
|
version: '0'
|
96
99
|
requirements: []
|
97
100
|
rubyforge_project:
|
98
|
-
rubygems_version: 2.
|
101
|
+
rubygems_version: 2.4.5.1
|
99
102
|
signing_key:
|
100
103
|
specification_version: 4
|
101
104
|
summary: The simple ruby extension library for SDL 2.x
|