raylib-bindings-tileson 0.6.0pre → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog +14 -1
- data/LICENSE.txt +1 -1
- data/README.md +4 -2
- data/examples/test.rb +4 -5
- data/lib/tileson.aarch64.so +0 -0
- data/lib/tileson.arm64.dylib +0 -0
- data/lib/tileson.dll +0 -0
- data/lib/tileson.rb +4 -1
- data/lib/tileson.x86_64.dylib +0 -0
- data/lib/tileson.x86_64.so +0 -0
- metadata +9 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d703545ffb33ba876ce4093b1cd67985e5ba8ed8e0eebbbccb5f4e16bfa72be
|
4
|
+
data.tar.gz: f1f58748adc22afbca90b0119077673fb5b32d619518414fabbcfca99b292963
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3c34dd63de411730e1d5c3e089b9727668ea5c653e78913f6711e543c3b34b06c04f6cdb28873572af617193dad02939482c28afd6d07a59de34294219db9e5
|
7
|
+
data.tar.gz: a5f70144b1da7314eaa4234652d7a94f2e6e8c285e6aa1bc315ef02edde0c71d2038d746341eaff3b4a17a4a517f453d1a343679cbf9257c1a89d1dbb4694c1f
|
data/ChangeLog
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
2024-01-07 vaiorabbit <http://twitter.com/vaiorabbit>
|
2
|
+
|
3
|
+
* Updated README
|
4
|
+
* Use raylib-bindings v0.6.1
|
5
|
+
|
6
|
+
2024-01-05 vaiorabbit <http://twitter.com/vaiorabbit>
|
7
|
+
|
8
|
+
* Updated raylib-bindings ( https://github.com/vaiorabbit/raylib-bindings/commit/45dfc6bae4176c7798a9b8af9a1b7f9c924aa453 )
|
9
|
+
|
10
|
+
2023-12-30 vaiorabbit <http://twitter.com/vaiorabbit>
|
11
|
+
|
12
|
+
* Added example/map
|
13
|
+
|
1
14
|
2023-12-29 vaiorabbit <http://twitter.com/vaiorabbit>
|
2
15
|
|
3
|
-
* v0.6.
|
16
|
+
* v0.6.0pre
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -3,7 +3,9 @@
|
|
3
3
|
# raylib-tileson wrapper for Ruby #
|
4
4
|
|
5
5
|
* Created : 2023-12-23
|
6
|
-
* Last modified :
|
6
|
+
* Last modified : 2024-01-07
|
7
|
+
|
8
|
+
<img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-tileson/main/doc/screenshot_00.png" width="600">
|
7
9
|
|
8
10
|
Provides Ruby bindings for raylib-tileson ( https://github.com/RobLoach/raylib-tileson )
|
9
11
|
|
@@ -49,7 +51,7 @@ All ruby codes here are available under the terms of the 2-clause BSD License:
|
|
49
51
|
|
50
52
|
BSD 2-Clause License
|
51
53
|
|
52
|
-
Copyright (c) 2023 vaiorabbit <http://twitter.com/vaiorabbit>
|
54
|
+
Copyright (c) 2023-2024 vaiorabbit <http://twitter.com/vaiorabbit>
|
53
55
|
All rights reserved.
|
54
56
|
|
55
57
|
Redistribution and use in source and binary forms, with or without
|
data/examples/test.rb
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
require_relative 'util/setup_dll'
|
2
|
-
require_relative 'util/resource_path'
|
3
2
|
|
4
3
|
if __FILE__ == $PROGRAM_NAME
|
5
|
-
screen_width =
|
6
|
-
screen_height =
|
4
|
+
screen_width = 480
|
5
|
+
screen_height = 272
|
7
6
|
position = Vector2.create
|
8
7
|
|
9
|
-
InitWindow(screen_width, screen_height, "
|
8
|
+
InitWindow(screen_width, screen_height, "Ruby raylib-tileson bindings")
|
10
9
|
SetTargetFPS(60)
|
11
10
|
|
12
|
-
map = LoadTiled("
|
11
|
+
map = LoadTiled("map/sampleMap.tmj")
|
13
12
|
|
14
13
|
until WindowShouldClose()
|
15
14
|
BeginDrawing()
|
Binary file
|
Binary file
|
data/lib/tileson.dll
ADDED
Binary file
|
data/lib/tileson.rb
CHANGED
@@ -1,6 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# raylib-tileson wrapper for Ruby
|
2
2
|
#
|
3
3
|
# * https://github.com/vaiorabbit/raylib-bindings-tileson
|
4
|
+
#
|
5
|
+
# Licensed under the BSD 2-Clause License.
|
6
|
+
# * https://github.com/vaiorabbit/raylib-bindings-tileson/blob/main/LICENSE.txt
|
4
7
|
|
5
8
|
require 'ffi'
|
6
9
|
require 'raylib'
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: raylib-bindings-tileson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vaiorabbit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.6.
|
33
|
+
version: 0.6.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.6.
|
40
|
+
version: 0.6.1
|
41
41
|
description: 'Ruby bindings for raylib-tileson ( https://github.com/RobLoach/raylib-tileson
|
42
42
|
)
|
43
43
|
|
@@ -52,7 +52,12 @@ files:
|
|
52
52
|
- LICENSE.txt
|
53
53
|
- README.md
|
54
54
|
- examples/test.rb
|
55
|
+
- lib/tileson.aarch64.so
|
56
|
+
- lib/tileson.arm64.dylib
|
57
|
+
- lib/tileson.dll
|
55
58
|
- lib/tileson.rb
|
59
|
+
- lib/tileson.x86_64.dylib
|
60
|
+
- lib/tileson.x86_64.so
|
56
61
|
homepage: https://github.com/vaiorabbit/raylib-bindings-tileson
|
57
62
|
licenses:
|
58
63
|
- BSD 2-Clause License
|