raylib-bindings-tileson 0.6.0pre-x64-mingw → 0.7.0-x64-mingw

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 295b4e5e7a8d3058ac9a6cfc4d30e123c3e249d1a5cc2e7ce716ec5ce261b8f2
4
- data.tar.gz: 8f4351585983493d517f4d65c8138e48604a562a8cedf451655fd2bca6cce121
3
+ metadata.gz: ed9c2d8ee313461ddd7a0a57bc10b5ef44c060bf347cbed0270bf1e731acf6e4
4
+ data.tar.gz: 07b32c2a7a11f55a3168395002b8fa0c8dc605f173b8aacee008fdc1a429568f
5
5
  SHA512:
6
- metadata.gz: efc9b6786ec8bc168dd47949a79fa339ff716a56e6d0361bdf75a31773d1c347ab604cee35f99d2233be101bbefa6d48afdd6876a637e14507780e4005240ba7
7
- data.tar.gz: cb3199d89f0e6a2ee7dfb293cd1af220b82904ff63b0221b8d0be9a02e9d521810b61c62adf5396330d97f213db2cbafe0979308a19f5f660a5b86a346e4bb9b
6
+ metadata.gz: a82502743ddc1a8b025c6d472a346237d3bde45fe752cd97fe468ffcb6bfd94dcad81bc0a68695d1279abeaa6977f65e893e707c8c97d134de1059568802b2df
7
+ data.tar.gz: f0ca024db93b8a103325e9742276cdc434245a3d3df98b25d06c5c5da39df062c65f8c2942a508d900921053bc1c9be952a7628b79eead1c9df14a75220bf531
data/ChangeLog CHANGED
@@ -1,3 +1,20 @@
1
+ 2024-02-03 vaiorabbit <http://twitter.com/vaiorabbit>
2
+
3
+ * Use raylib-bindings v0.7.0
4
+
5
+ 2024-01-07 vaiorabbit <http://twitter.com/vaiorabbit>
6
+
7
+ * Updated README
8
+ * Use raylib-bindings v0.6.1
9
+
10
+ 2024-01-05 vaiorabbit <http://twitter.com/vaiorabbit>
11
+
12
+ * Updated raylib-bindings ( https://github.com/vaiorabbit/raylib-bindings/commit/45dfc6bae4176c7798a9b8af9a1b7f9c924aa453 )
13
+
14
+ 2023-12-30 vaiorabbit <http://twitter.com/vaiorabbit>
15
+
16
+ * Added example/map
17
+
1
18
  2023-12-29 vaiorabbit <http://twitter.com/vaiorabbit>
2
19
 
3
- * v0.6.0
20
+ * 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-02-03
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.dll CHANGED
Binary file
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'
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.7.0
5
5
  platform: x64-mingw
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-02-03 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.7.0
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.7.0
41
41
  description: 'Ruby bindings for raylib-tileson ( https://github.com/RobLoach/raylib-tileson
42
42
  )
43
43
 
@@ -56,7 +56,7 @@ files:
56
56
  - lib/tileson.rb
57
57
  homepage: https://github.com/vaiorabbit/raylib-bindings-tileson
58
58
  licenses:
59
- - BSD 2-Clause License
59
+ - BSD-2-Clause
60
60
  metadata: {}
61
61
  post_install_message:
62
62
  rdoc_options: []
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.5.3
76
+ rubygems_version: 3.5.5
77
77
  signing_key:
78
78
  specification_version: 4
79
79
  summary: Ruby bindings for raylib-tileson