raylib-bindings-tileson 0.6.0pre-x86_64-darwin → 0.6.1-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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ba0588942785f819822690639a2b41361d45abfa73108dd601a199b45f9be992
4
- data.tar.gz: 169baae0d8dc32e4fb4672aa944d70d742f265c34cc7ec461f2559331525ef49
3
+ metadata.gz: fb28ad460e705dab19efa8c2030db0fde5034f0156da28c69ebe6746e2486bbd
4
+ data.tar.gz: 6feafe0745872bc98e5ffc3acd25c1c112d41a00ccaed7316c718822d02bf475
5
5
  SHA512:
6
- metadata.gz: 922ec2336bf4a7cd7ac65a905925f9ce432ebea85c065bf20da499d0235e2fc1dee630ba05758523e5e7b47a496d6acf4ae8cdd7321d58a132d3736e908a2b86
7
- data.tar.gz: 01a9295935212a9f53d75defd25a50e9bc8fc6e99ad6d03289e26118632ccd97067bc12373fe3ee2ef4e8fb2d6d33c826adaab062cefbaaeac888026f63f8b0e
6
+ metadata.gz: f0271ca24b26aea84e5d1e8bca8f4bfc30095fb6e22a89e1dc14c2949a3f32b1e513ee24e1df42b6c1059dae86105b3e6af2f9cd2ba807e702054d3229f4a710
7
+ data.tar.gz: 8c93dc07a0d54997dc002b478499d4060f068fc706df24ad9ccabdf07d0a72c1cf3398c7bf734facd3d577c270f3dfbb8aa4024f9dc22cc6ede786aa3ce8b4c1
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.0
16
+ * v0.6.0pre
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  BSD 2-Clause License
2
2
 
3
- Copyright (c) 2023 vaiorabbit <http://twitter.com/vaiorabbit>
3
+ Copyright (c) 2023-2024 vaiorabbit <http://twitter.com/vaiorabbit>
4
4
  All rights reserved.
5
5
 
6
6
  Redistribution and use in source and binary forms, with or without
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 : 2023-12-29
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 = 800
6
- screen_height = 450
4
+ screen_width = 480
5
+ screen_height = 272
7
6
  position = Vector2.create
8
7
 
9
- InitWindow(screen_width, screen_height, "Yet Another Ruby-raylib bindings")
8
+ InitWindow(screen_width, screen_height, "Ruby raylib-tileson bindings")
10
9
  SetTargetFPS(60)
11
10
 
12
- map = LoadTiled("#{RAYLIB_TILESON_RESOURCE_PATH}resources/desert.json")
11
+ map = LoadTiled("map/sampleMap.tmj")
13
12
 
14
13
  until WindowShouldClose()
15
14
  BeginDrawing()
data/lib/tileson.rb CHANGED
@@ -1,6 +1,9 @@
1
- # Yet another raylib wrapper for Ruby
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
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.0pre
4
+ version: 0.6.1
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - vaiorabbit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-29 00:00:00.000000000 Z
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.0
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.0
40
+ version: 0.6.1
41
41
  description: 'Ruby bindings for raylib-tileson ( https://github.com/RobLoach/raylib-tileson
42
42
  )
43
43