raylib-bindings 0.7.8-x86_64-darwin → 0.7.10-x86_64-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/LICENSE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  Ruby-raylib : Yet another raylib wrapper for Ruby
2
- Copyright (c) 2021-2024 vaiorabbit <http://twitter.com/vaiorabbit>
2
+ Copyright (c) 2021-2025 vaiorabbit <http://twitter.com/vaiorabbit>
3
3
 
4
4
  This software is provided 'as-is', without any express or implied
5
5
  warranty. In no event will the authors be held liable for any damages
data/README.md CHANGED
@@ -1,209 +1,217 @@
1
- <!-- -*- mode:markdown; coding:utf-8; -*- -->
2
-
3
- # Yet another raylib wrapper for Ruby #
4
-
5
- * Created : 2021-10-17
6
- * Last modified : 2024-10-14
7
-
8
- Provides Ruby bindings for raylib-related libraries including:
9
-
10
- * [raylib](https://github.com/raysan5/raylib) version [5.5-dev]( https://github.com/raysan5/raylib/commit/59417636ca956d64800e7e26d4f4ec331cf1b412 )
11
- * raylib
12
- * raymath
13
- * rlgl
14
- * [raygui](https://github.com/raysan5/raygui) version [4.5-dev]( https://github.com/raysan5/raygui/commit/1e03efca48c50c5ea4b4a053d5bf04bad58d3e43 )
15
- * [Physac](https://github.com/raysan5/physac) version [1.1]( https://github.com/raysan5/physac/commit/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833 )
16
-
17
- <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/bitmap_font_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/game_of_life_simple_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/lissajous_curve_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/procedural_texture_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/reversi_board_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/utf8_font_rb.png" width="125">
18
-
19
- ## Features ##
20
-
21
- * Generated semi-automatically
22
- * Based on Ruby/FFI ( https://github.com/ffi/ffi )
23
- * Pre-built binaries are inside:
24
- * Windows (x86_64)
25
- * macOS (x86_64, ARM64)
26
- * Linux (x86_64, ARM64)
27
-
28
- ## Quick Start ##
29
-
30
- ```
31
- D:\> gem install raylib-bindings
32
- Fetching raylib-bindings-...
33
- ...
34
- 1 gem installed
35
-
36
- D:\> ruby -r raylib -e 'Raylib.template'
37
- [Info] Raylib.template : C:/Ruby31-x64/lib/ruby/gems/3.1.0/gems/raylib-bindings-0.0.11/examples/template.rb => d://template.rb
38
- [Info] Raylib.template : Done
39
-
40
- D:\> ruby template.rb
41
- ```
42
-
43
-
44
- <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/template_screenshot.png" width="400">
45
-
46
- ## Prerequisites ##
47
-
48
- * Ruby interpreter
49
- * Tested on:
50
- * [macOS] https://rvm.io
51
- * ruby 3.3.3 (2024-06-12 revision f1c7b6f435) [arm64-darwin23]
52
- * [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
53
- * ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [x64-mingw-ucrt]
54
- * [Linux/x86_64 WSL] https://github.com/rvm/ubuntu_rvm
55
- * ruby 3.2.0preview1 (2022-04-03 master f801386f0c) [x86_64-linux]
56
- * [Linux/ARM64 Chromebook] https://github.com/rvm/ubuntu_rvm
57
- * ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [aarch64-linux]
58
-
59
- * If you need to build DLLs/shared libralies for your own runtime envrioenment (Linux, etc.):
60
- * CMake https://cmake.org/download/
61
- * C Compiler
62
- * Tested compilers:
63
- * [macOS] clang
64
-
65
- $ clang --version
66
- Apple clang version 15.0.0 (clang-1500.3.9.4)
67
- Target: arm64-apple-darwin23.4.0
68
- Thread model: posix
69
- InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
70
-
71
- * [Windows] gcc
72
-
73
- gcc (Rev3, Built by MSYS2 project) 13.2.0
74
-
75
- * [Linux] gcc, clang
76
-
77
- (x86_64) Ubuntu clang version 14.0.0-1ubuntu1
78
- (arm64) Debian clang version 14.0.6
79
-
80
- <details>
81
- <summary>Older versions</summary>
82
-
83
- * Ruby interpreter
84
- * Tested on:
85
- * [macOS]
86
- * ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [arm64-darwin23]
87
- * ruby 3.2.1 (2023-02-08 revision 31819e82c8) [arm64-darwin22]
88
- * ruby 3.2.0 (2022-12-25 revision a528908271) [arm64-darwin21]
89
- * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21]
90
- * ruby 3.1.0p0 (2021-12-25 revision fb4df44d16) [arm64-darwin20]
91
- * ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [arm64-darwin20]
92
- * [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
93
- * ruby 3.2.0 (2022-12-25 revision a528908271) [x64-mingw-ucrt]
94
- * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x64-mingw-ucrt]
95
- * ruby 3.1.1p18 (2022-02-18 revision 53f5fc4236) [x64-mingw-ucrt]
96
- * ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [x64-mingw32]
97
- * [Linux/ARM64 Chromebook] https://github.com/rvm/ubuntu_rvm
98
- * ruby 3.2.0 (2022-12-25 revision a528908271) [aarch64-linux]
99
-
100
- * Compiler
101
- * Tested on:
102
- * [macOS] clang
103
-
104
- $ clang --version
105
- Apple clang version 15.0.0 (clang-1500.0.40.1)
106
- Target: arm64-apple-darwin23.0.0
107
- Thread model: posix
108
- InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
109
-
110
- $ clang --version
111
- Apple clang version 14.0.0 (clang-1400.0.29.202)
112
- Target: arm64-apple-darwin22.2.0
113
- Thread model: posix
114
- InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
115
-
116
- $ clang --version
117
- Apple clang version 13.1.6 (clang-1316.0.21.2.5)
118
- Target: arm64-apple-darwin21.5.0
119
- Thread model: posix
120
- InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
121
-
122
- $ clang --version
123
- Apple clang version 13.1.6 (clang-1316.0.21.2.3)
124
- Target: arm64-apple-darwin21.5.0
125
- Thread model: posix
126
- InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
127
-
128
- Apple clang version 13.0.0 (clang-1300.0.29.3)
129
- Target: arm64-apple-darwin20.6.0
130
- Thread model: posix
131
- InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
132
-
133
- * [Windows] gcc
134
-
135
- gcc (Rev7, Built by MSYS2 project) 12.2.0
136
- gcc (Rev10, Built by MSYS2 project) 11.2.0
137
- gcc (Rev9, Built by MSYS2 project) 11.2.0
138
-
139
- </details>
140
-
141
- ## Projects ##
142
-
143
- ### Games ###
144
-
145
- See the projects below to learn how to use this library:
146
-
147
- * Whac-a-Mole! : Ruby raylib bindings demo
148
- * <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-whacamole/main/doc/screenshot_00.png" width="300"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-whacamole/main/doc/screenshot_01.png" width="300">
149
- * <https://github.com/vaiorabbit/raylib-bindings-whacamole>
150
-
151
- * 1D dot eater : Ruby raylib bindings demo
152
- * <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-pacone/main/doc/screenshot_00.png" width="600">
153
- * <https://github.com/vaiorabbit/raylib-bindings-pacone>
154
-
155
- * flapper.rb : Ruby raylib bindings demo
156
- * <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-flapper/main/doc/screenshot_01.png" width="150">
157
- * <https://github.com/vaiorabbit/raylib-bindings-flapper>
158
-
159
- ### Libraries ###
160
-
161
- * raylib-bindings-tileson : Provides Ruby bindings for raylib-tileson ( https://github.com/RobLoach/raylib-tileson )
162
- * <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-tileson/main/doc/screenshot_00.png" width="600">
163
- * <https://github.com/vaiorabbit/raylib-bindings-tileson>
164
-
165
- ## Limitation ##
166
-
167
- * `SetTraceLogCallback` and `TraceLogCallback` are unusable since Ruby-FFI does not support `:varargs` parameter in callbacks (`Proc`, etc.)
168
- * Ref.: https://ffi.github.io/ruby-ffi-archive/messages/20130214-%5Bruby-ffi%5D%20Re_%20Callback%20Function%20with%20varargs-345.html
169
-
170
- * For macOS users: if you get error messages like “'.... .dylib' not valid for use in process: library load disallowed by system policy” , you can work around it with the following command (although it is not recommended):
171
- * $ xattr -dr com.apple.quarantine (path to the .dylib)
172
-
173
- ## License ##
174
-
175
- Shared libraries in `lib` directory are built on top of these products and are available under the terms of these licenses:
176
-
177
- * `libraylib.arm64.dylib`, `libraylib.x86_64.dylib`, `libraylib.dll`, `libraylib.aarch64.so`, `libraylib.x86_64.so`
178
- * raylib ( https://github.com/raysan5/raylib )
179
- * zlib License https://github.com/raysan5/raylib/blob/master/LICENSE
180
- * `raygui.arm64.dylib`, `raygui.x86_64.dylib`, `raygui.dll`, `raygui.aarch64.so`, `raygui.x86_64.so`
181
- * raygui ( https://github.com/raysan5/raygui )
182
- * zlib License https://github.com/raysan5/raygui/blob/master/LICENSE
183
- * `physac.arm64.dylib`, `physac.x86_64.dylib`, `physac.dll`, `physac.aarch64.so`, `physac.x86_64.so`
184
- * Physac ( https://github.com/raysan5/physac )
185
- * LICENSE: zlib/libpng https://github.com/raysan5/physac/blob/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833/src/physac.h#L51-L68
186
-
187
- All ruby codes here are available under the terms of the zlib/libpng License ( http://opensource.org/licenses/Zlib ).
188
-
189
- Ruby-raylib : Yet another raylib wrapper for Ruby
190
- Copyright (c) 2021-2024 vaiorabbit <http://twitter.com/vaiorabbit>
191
-
192
- This software is provided 'as-is', without any express or implied
193
- warranty. In no event will the authors be held liable for any damages
194
- arising from the use of this software.
195
-
196
- Permission is granted to anyone to use this software for any purpose,
197
- including commercial applications, and to alter it and redistribute it
198
- freely, subject to the following restrictions:
199
-
200
- 1. The origin of this software must not be misrepresented; you must not
201
- claim that you wrote the original software. If you use this software
202
- in a product, an acknowledgment in the product documentation would be
203
- appreciated but is not required.
204
-
205
- 2. Altered source versions must be plainly marked as such, and must not be
206
- misrepresented as being the original software.
207
-
208
- 3. This notice may not be removed or altered from any source
209
- distribution.
1
+ <!-- -*- mode:markdown; coding:utf-8; -*- -->
2
+
3
+ # Yet another raylib wrapper for Ruby #
4
+
5
+ * Created : 2021-10-17
6
+ * Last modified : 2025-01-01
7
+
8
+ Provides Ruby bindings for raylib-related libraries including:
9
+
10
+ * [raylib](https://github.com/raysan5/raylib) version [5.6-dev]( https://github.com/raysan5/raylib/commit/93a1e75741175b9a2136593064b3714e79a363e2 )
11
+ * raylib
12
+ * raymath
13
+ * rlgl
14
+ * [raygui](https://github.com/raysan5/raygui) version [4.5-dev]( https://github.com/raysan5/raygui/commit/f11dc823d1c938def8f0a823fd5f51979caab94d )
15
+ * [Physac](https://github.com/raysan5/physac) version [1.1]( https://github.com/raysan5/physac/commit/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833 )
16
+
17
+ <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/bitmap_font_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/game_of_life_simple_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/lissajous_curve_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/procedural_texture_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/reversi_board_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/utf8_font_rb.png" width="125">
18
+
19
+ ## Features ##
20
+
21
+ * Generated semi-automatically
22
+ * Based on Ruby/FFI ( https://github.com/ffi/ffi )
23
+ * Pre-built binaries are inside:
24
+ * Windows (x86_64)
25
+ * macOS (x86_64, ARM64)
26
+ * Linux (x86_64, ARM64)
27
+
28
+ ## Quick Start ##
29
+
30
+ ```
31
+ D:\> gem install raylib-bindings
32
+ Fetching raylib-bindings-...
33
+ ...
34
+ 1 gem installed
35
+
36
+ D:\> ruby -r raylib -e 'Raylib.template'
37
+ [Info] Raylib.template : C:/Ruby31-x64/lib/ruby/gems/3.1.0/gems/raylib-bindings-0.0.11/examples/template.rb => d://template.rb
38
+ [Info] Raylib.template : Done
39
+
40
+ D:\> ruby template.rb
41
+ ```
42
+
43
+
44
+ <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/template_screenshot.png" width="400">
45
+
46
+ ## Prerequisites ##
47
+
48
+ * Ruby interpreter
49
+ * Tested on:
50
+ * [macOS] https://rvm.io
51
+ * ruby 3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [arm64-darwin24]
52
+ * [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
53
+ * ruby 3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [x64-mingw-ucrt]
54
+ * [Linux/x86_64 WSL] https://github.com/rvm/ubuntu_rvm
55
+ * ruby 3.2.0preview1 (2022-04-03 master f801386f0c) [x86_64-linux]
56
+ * [Linux/ARM64 Chromebook] https://github.com/rvm/ubuntu_rvm
57
+ * ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [aarch64-linux]
58
+
59
+ * If you need to build DLLs/shared libralies for your own runtime envrioenment (Linux, etc.):
60
+ * CMake https://cmake.org/download/
61
+ * C Compiler
62
+ * Tested compilers:
63
+ * [macOS] clang
64
+
65
+ $ clang --version
66
+ Apple clang version 16.0.0 (clang-1600.0.26.6)
67
+ Target: arm64-apple-darwin24.2.0
68
+ Thread model: posix
69
+ InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
70
+
71
+ * [Windows] gcc
72
+
73
+ gcc (Rev3, Built by MSYS2 project) 13.2.0
74
+
75
+ * [Linux] gcc, clang
76
+
77
+ (x86_64) Ubuntu clang version 14.0.0-1ubuntu1
78
+ (arm64) Debian clang version 14.0.6
79
+
80
+ <details>
81
+ <summary>Older versions</summary>
82
+
83
+ * Ruby interpreter
84
+ * Tested on:
85
+ * [macOS]
86
+ * ruby 3.3.3 (2024-06-12 revision f1c7b6f435) [arm64-darwin23]
87
+ * ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [arm64-darwin23]
88
+ * ruby 3.2.1 (2023-02-08 revision 31819e82c8) [arm64-darwin22]
89
+ * ruby 3.2.0 (2022-12-25 revision a528908271) [arm64-darwin21]
90
+ * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21]
91
+ * ruby 3.1.0p0 (2021-12-25 revision fb4df44d16) [arm64-darwin20]
92
+ * ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [arm64-darwin20]
93
+ * [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
94
+ * ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [x64-mingw-ucrt]
95
+ * ruby 3.2.0 (2022-12-25 revision a528908271) [x64-mingw-ucrt]
96
+ * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x64-mingw-ucrt]
97
+ * ruby 3.1.1p18 (2022-02-18 revision 53f5fc4236) [x64-mingw-ucrt]
98
+ * ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [x64-mingw32]
99
+ * [Linux/ARM64 Chromebook] https://github.com/rvm/ubuntu_rvm
100
+ * ruby 3.2.0 (2022-12-25 revision a528908271) [aarch64-linux]
101
+
102
+ * Compiler
103
+ * Tested on:
104
+ * [macOS] clang
105
+
106
+ $ clang --version
107
+ Apple clang version 15.0.0 (clang-1500.3.9.4)
108
+ Target: arm64-apple-darwin23.4.0
109
+ Thread model: posix
110
+ InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
111
+
112
+ $ clang --version
113
+ Apple clang version 15.0.0 (clang-1500.0.40.1)
114
+ Target: arm64-apple-darwin23.0.0
115
+ Thread model: posix
116
+ InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
117
+
118
+ $ clang --version
119
+ Apple clang version 14.0.0 (clang-1400.0.29.202)
120
+ Target: arm64-apple-darwin22.2.0
121
+ Thread model: posix
122
+ InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
123
+
124
+ $ clang --version
125
+ Apple clang version 13.1.6 (clang-1316.0.21.2.5)
126
+ Target: arm64-apple-darwin21.5.0
127
+ Thread model: posix
128
+ InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
129
+
130
+ $ clang --version
131
+ Apple clang version 13.1.6 (clang-1316.0.21.2.3)
132
+ Target: arm64-apple-darwin21.5.0
133
+ Thread model: posix
134
+ InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
135
+
136
+ Apple clang version 13.0.0 (clang-1300.0.29.3)
137
+ Target: arm64-apple-darwin20.6.0
138
+ Thread model: posix
139
+ InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
140
+
141
+ * [Windows] gcc
142
+
143
+ gcc (Rev7, Built by MSYS2 project) 12.2.0
144
+ gcc (Rev10, Built by MSYS2 project) 11.2.0
145
+ gcc (Rev9, Built by MSYS2 project) 11.2.0
146
+
147
+ </details>
148
+
149
+ ## Projects ##
150
+
151
+ ### Games ###
152
+
153
+ See the projects below to learn how to use this library:
154
+
155
+ * Whac-a-Mole! : Ruby raylib bindings demo
156
+ * <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-whacamole/main/doc/screenshot_00.png" width="300"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-whacamole/main/doc/screenshot_01.png" width="300">
157
+ * <https://github.com/vaiorabbit/raylib-bindings-whacamole>
158
+
159
+ * 1D dot eater : Ruby raylib bindings demo
160
+ * <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-pacone/main/doc/screenshot_00.png" width="600">
161
+ * <https://github.com/vaiorabbit/raylib-bindings-pacone>
162
+
163
+ * flapper.rb : Ruby raylib bindings demo
164
+ * <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-flapper/main/doc/screenshot_01.png" width="150">
165
+ * <https://github.com/vaiorabbit/raylib-bindings-flapper>
166
+
167
+ ### Libraries ###
168
+
169
+ * raylib-bindings-tileson : Provides Ruby bindings for raylib-tileson ( https://github.com/RobLoach/raylib-tileson )
170
+ * <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-tileson/main/doc/screenshot_00.png" width="600">
171
+ * <https://github.com/vaiorabbit/raylib-bindings-tileson>
172
+
173
+ ## Limitation ##
174
+
175
+ * `SetTraceLogCallback` and `TraceLogCallback` are unusable since Ruby-FFI does not support `:varargs` parameter in callbacks (`Proc`, etc.)
176
+ * Ref.: https://ffi.github.io/ruby-ffi-archive/messages/20130214-%5Bruby-ffi%5D%20Re_%20Callback%20Function%20with%20varargs-345.html
177
+
178
+ * For macOS users: if you get error messages like “'.... .dylib' not valid for use in process: library load disallowed by system policy” , you can work around it with the following command (although it is not recommended):
179
+ * $ xattr -dr com.apple.quarantine (path to the .dylib)
180
+
181
+ ## License ##
182
+
183
+ Shared libraries in `lib` directory are built on top of these products and are available under the terms of these licenses:
184
+
185
+ * `libraylib.arm64.dylib`, `libraylib.x86_64.dylib`, `libraylib.dll`, `libraylib.aarch64.so`, `libraylib.x86_64.so`
186
+ * raylib ( https://github.com/raysan5/raylib )
187
+ * zlib License https://github.com/raysan5/raylib/blob/master/LICENSE
188
+ * `raygui.arm64.dylib`, `raygui.x86_64.dylib`, `raygui.dll`, `raygui.aarch64.so`, `raygui.x86_64.so`
189
+ * raygui ( https://github.com/raysan5/raygui )
190
+ * zlib License https://github.com/raysan5/raygui/blob/master/LICENSE
191
+ * `physac.arm64.dylib`, `physac.x86_64.dylib`, `physac.dll`, `physac.aarch64.so`, `physac.x86_64.so`
192
+ * Physac ( https://github.com/raysan5/physac )
193
+ * LICENSE: zlib/libpng https://github.com/raysan5/physac/blob/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833/src/physac.h#L51-L68
194
+
195
+ All ruby codes here are available under the terms of the zlib/libpng License ( http://opensource.org/licenses/Zlib ).
196
+
197
+ Ruby-raylib : Yet another raylib wrapper for Ruby
198
+ Copyright (c) 2021-2025 vaiorabbit <http://twitter.com/vaiorabbit>
199
+
200
+ This software is provided 'as-is', without any express or implied
201
+ warranty. In no event will the authors be held liable for any damages
202
+ arising from the use of this software.
203
+
204
+ Permission is granted to anyone to use this software for any purpose,
205
+ including commercial applications, and to alter it and redistribute it
206
+ freely, subject to the following restrictions:
207
+
208
+ 1. The origin of this software must not be misrepresented; you must not
209
+ claim that you wrote the original software. If you use this software
210
+ in a product, an acknowledgment in the product documentation would be
211
+ appreciated but is not required.
212
+
213
+ 2. Altered source versions must be plainly marked as such, and must not be
214
+ misrepresented as being the original software.
215
+
216
+ 3. This notice may not be removed or altered from any source
217
+ distribution.