ruby-sdl2 0.3.5 → 0.3.7
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.
- checksums.yaml +4 -4
- data/.gitignore +4 -1
- data/Gemfile +10 -0
- data/README.md +8 -3
- data/Rakefile +22 -2
- data/Steepfile +24 -0
- data/doc/DEVELOP.md +35 -0
- data/event.c +36 -32
- data/gamecontroller.c +31 -27
- data/gamecontroller.c.m4 +31 -27
- data/gl.c +63 -67
- data/gl.c.m4 +63 -67
- data/hint.c +3 -3
- data/joystick.c +16 -12
- data/joystick.c.m4 +16 -12
- data/key.c +21 -19
- data/key.c.m4 +21 -19
- data/lib/sdl2/version.rb +3 -3
- data/main.c +13 -16
- data/messagebox.c +7 -7
- data/mixer.c +54 -38
- data/mixer.c.m4 +54 -38
- data/mouse.c +3 -3
- data/rbs_collection.yaml +32 -0
- data/rubysdl2_internal.h +12 -1
- data/sample/test_read_pixels.rb +41 -0
- data/ttf.c +20 -17
- data/ttf.c.m4 +20 -17
- data/video.c +262 -143
- data/video.c.m4 +199 -112
- metadata +8 -6
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-sdl2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ippei Obayashi
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies: []
|
|
13
12
|
description: |2
|
|
14
13
|
Ruby/SDL2 is an extension library to use SDL 2.x
|
|
@@ -27,9 +26,12 @@ files:
|
|
|
27
26
|
- ".dir-locals.el"
|
|
28
27
|
- ".gitignore"
|
|
29
28
|
- COPYING.txt
|
|
29
|
+
- Gemfile
|
|
30
30
|
- README.md
|
|
31
31
|
- Rakefile
|
|
32
|
+
- Steepfile
|
|
32
33
|
- clipboard.c
|
|
34
|
+
- doc/DEVELOP.md
|
|
33
35
|
- doc/po/ja.po
|
|
34
36
|
- event.c
|
|
35
37
|
- extconf.rb
|
|
@@ -50,6 +52,7 @@ files:
|
|
|
50
52
|
- mixer.c
|
|
51
53
|
- mixer.c.m4
|
|
52
54
|
- mouse.c
|
|
55
|
+
- rbs_collection.yaml
|
|
53
56
|
- rubysdl2_internal.h
|
|
54
57
|
- sample/chunk_destroy.rb
|
|
55
58
|
- sample/icon.bmp
|
|
@@ -65,6 +68,7 @@ files:
|
|
|
65
68
|
- sample/test_joystick.rb
|
|
66
69
|
- sample/test_keyboard.rb
|
|
67
70
|
- sample/test_mouse.rb
|
|
71
|
+
- sample/test_read_pixels.rb
|
|
68
72
|
- sample/test_surface.rb
|
|
69
73
|
- sample/test_ttf.rb
|
|
70
74
|
- sample/test_video.rb
|
|
@@ -83,7 +87,6 @@ homepage: https://github.com/ohai/ruby-sdl2
|
|
|
83
87
|
licenses:
|
|
84
88
|
- LGPL-3.0
|
|
85
89
|
metadata: {}
|
|
86
|
-
post_install_message:
|
|
87
90
|
rdoc_options: []
|
|
88
91
|
require_paths:
|
|
89
92
|
- lib
|
|
@@ -98,8 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
98
101
|
- !ruby/object:Gem::Version
|
|
99
102
|
version: '0'
|
|
100
103
|
requirements: []
|
|
101
|
-
rubygems_version:
|
|
102
|
-
signing_key:
|
|
104
|
+
rubygems_version: 4.0.3
|
|
103
105
|
specification_version: 4
|
|
104
106
|
summary: The simple ruby extension library for SDL 2.x
|
|
105
107
|
test_files: []
|