voxelamming_gem 0.1.1 → 0.1.3

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: 8ff1ac60303d84e62d69ad720a84ef3db7e180ee41c121d0e8c099dfa267aa2d
4
- data.tar.gz: 17e564b684612fcf5ae6e1fbb748e89f2eb429fed9eff5a6759d79a7f9017bbe
3
+ metadata.gz: e8fd791e5824d1c5b9789068dc4c3a27d75a7366b714ebe7a885dd9b72947836
4
+ data.tar.gz: 1b28fe1a31fe72e7f8db78e70eb8f85f552f961bfb9a71368f5d8203ed7a98c6
5
5
  SHA512:
6
- metadata.gz: fb4f8cf109ff0205257e3e24cd11b2b634390beada5a4eb61135f936e809af393afa6675074359c76c85e39efd78bae969c8b2d14ad5de96335c4b68431f9cc5
7
- data.tar.gz: a00a9cae5444283683504ae9476c875d6faf910bbbf7944d361cb043e22a0efdca3eb35fa802853c996571561a27729c23d0e3231663c31a95577b2113154b59
6
+ metadata.gz: 47e1cb1d198e235a17f28bbac3aef7f4520c2f93126857f3553d129c5cac334cc18c67364cda0676f1c574da798e3514526723d63760429ee1fa6ee3378085c4
7
+ data.tar.gz: b52fbdd6e642253e1e3781a0137f6b50a9e1dde7a88c851f757e6e82cddf796d6c92e2f2892d89051a30432007eece1a007a903c9caff3a0d6cc325129a852ee
data/CHANGELOG.md ADDED
@@ -0,0 +1,14 @@
1
+ ## VoxelammingGem Change log
2
+
3
+ ### ver. 0.1.0
4
+
5
+ - first release
6
+
7
+ ### ver. 0.1.1
8
+
9
+ - Map and ply file paths changed to be specified as relative paths.
10
+ - a few bug fixes
11
+
12
+ ### ver. 0.1.2
13
+
14
+ - Changed so that the size of the map can be specified.
data/README.md CHANGED
@@ -1,24 +1,82 @@
1
+ # Development of `voxelamming_gem` has been terminated. Please use `voxelamming` as a successor.
2
+
1
3
  # VoxelammingGem
2
4
 
3
- TODO: Delete this and the text below, and describe your gem
5
+ This Ruby package converts Python code into JSON format and sends it to the Voxelamming app using WebSockets, allowing users to create 3D voxel models by writing Ruby scripts.
4
6
 
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/voxelamming_gem`. To experiment with that code, run `bin/console` for an interactive prompt.
7
+ ## What's Voxelamming?
6
8
 
7
- ## Installation
9
+ <p align="center"><img src="https://creativival.github.io/voxelamming/image/voxelamming_icon.png" alt="Voxelamming Logo" width="200"/></p>
8
10
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
11
+ Voxelamming is an AR programming learning app. Even programming beginners can learn programming visually and enjoyably. Voxelamming supports iPhones and iPads with iOS 16 or later, and Apple Vision Pro.
10
12
 
11
- Install the gem and add to the application's Gemfile by executing:
13
+ ## Resources
12
14
 
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
15
+ * **Homepage:** https://creativival.github.io/voxelamming/index.en
16
+ * **Samples:** https://github.com/creativival/voxelamming/tree/main/sample/ruby
14
17
 
15
- If bundler is not being used to manage dependencies, install the gem by executing:
16
18
 
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
19
+ ## Installation
20
+
21
+ ```bash
22
+ gem install voxelamming_gem
23
+ ```
18
24
 
19
25
  ## Usage
20
26
 
21
- TODO: Write usage instructions here
27
+ ```ruby
28
+ require 'voxelamming_gem'
29
+
30
+ room_name = '1000'
31
+ build_box = VoxelammingGem::BuildBox.new(room_name)
32
+
33
+ build_box.set_box_size(0.5)
34
+ build_box.set_build_interval(0.01)
35
+
36
+ for i in 0...100
37
+ build_box.create_box(-1, i, 0, r: 0, g: 1, b: 1)
38
+ build_box.create_box(0, i, 0, r: 1, g: 0, b: 0)
39
+ build_box.create_box(1, i, 0, r: 1, g: 1, b: 0)
40
+ build_box.create_box(2, i, 0, r: 0, g: 1, b: 1)
41
+ end
42
+
43
+ for i in 0...50
44
+ build_box.remove_box(0, i * 2, 0)
45
+ build_box.remove_box(1, i * 2 + 1, 0)
46
+ end
47
+
48
+ build_box.send_data
49
+ ```
50
+
51
+ This code snippet demonstrates a simple example where a red voxel is created at a specific location. You can use various functions provided by the `BuildBox` class to build more complex models.
52
+
53
+ #### Method description
54
+
55
+ | Method name | Description | Arguments |
56
+ |---|---|---|
57
+ | `set_room_name(room_name)` | Sets the room name for communicating with the device. | `room_name`: Room name (string) |
58
+ | `set_box_size(size)` | Sets the size of the voxel (default: 1.0). | `size`: Size (float) |
59
+ | `set_build_interval(interval)` | Sets the placement interval of the voxels (default: 0.01 seconds). | `interval`: Interval (float) |
60
+ | `change_shape(shape)` | Changes the shape of the voxel. | `shape`: Shape ("box", "square", "plane") |
61
+ | `change_material(is_metallic, roughness)` | Changes the material of the voxel. | `is_metallic`: Whether to make it metallic (boolean), `roughness`: Roughness (float) |
62
+ | `create_box(x, y, z, r, g, b, alpha)` | Places a voxel. | `x`, `y`, `z`: Position (float), `r`, `g`, `b`, `alpha`: Color (float, 0-1) |
63
+ | `create_box(x, y, z, texture)` | Places a voxel with texture. | `x`, `y`, `z`: Position (float), `texture`: Texture name (string) |
64
+ | `remove_box(x, y, z)` | Removes a voxel. | `x`, `y`, `z`: Position (float) |
65
+ | `write_sentence(sentence, x, y, z, r, g, b, alpha)` | Draws a string with voxels. | `sentence`: String (string), `x`, `y`, `z`: Position (float), `r`, `g`, `b`, `alpha`: Color (float, 0-1) |
66
+ | `set_light(x, y, z, r, g, b, alpha, intensity, interval, light_type)` | Places a light. | `x`, `y`, `z`: Position (float), `r`, `g`, `b`, `alpha`: Color (float, 0-1), `intensity`: Intensity (float), `interval`: Blinking interval (float), `light_type`: Type of light ("point", "spot", "directional") |
67
+ | `set_command(command)` | Executes a command. | `command`: Command ("axis", "japaneseCastle", "float", "liteRender") |
68
+ | `draw_line(x1, y1, z1, x2, y2, z2, r, g, b, alpha)` | Draws a line between two points. | `x1`, `y1`, `z1`: Starting point (float), `x2`, `y2`, `z2`: Ending point (float), `r`, `g`, `b`, `alpha`: Color (float, 0-1) |
69
+ | `send_data(name)` | Sends voxel data to the device; if the name argument is set, the voxel data can be stored and reproduced as history. | |
70
+ | `clear_data()` | Initializes voxel data. | |
71
+ | `translate(x, y, z, pitch, yaw, roll)` | Moves and rotates the coordinate system of the voxel. | `x`, `y`, `z`: Translation amount (float), `pitch`, `yaw`, `roll`: Rotation amount (float) |
72
+ | `animate(x, y, z, pitch, yaw, roll, scale, interval)` | Animates a voxel. | `x`, `y`, `z`: Translation amount (float), `pitch`, `yaw`, `roll`: Rotation amount (float), `scale`: Scale (float), `interval`: Interval (float) |
73
+ | `animate_global(x, y, z, pitch, yaw, roll, scale, interval)` | Animates all voxels. | `x`, `y`, `z`: Translation amount (float), `pitch`, `yaw`, `roll`: Rotation amount (float), `scale`: Scale (float), `interval`: Interval (float) |
74
+ | `push_matrix()` | Saves the current coordinate system to the stack. | |
75
+ | `pop_matrix()` | Restores the coordinate system from the stack. | |
76
+ | `frame_in()` | Starts recording a frame. | |
77
+ | `frame_out()` | Ends recording a frame. | |
78
+ | `set_frame_fps(fps)` | Sets the frame rate (default: 2). | `fps`: Frame rate (int) |
79
+ | `set_frame_repeats(repeats)` | Sets the number of frame repetitions (default: 10). | `repeats`: Number of repetitions (int) |
22
80
 
23
81
  ## Development
24
82
 
@@ -28,7 +86,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
28
86
 
29
87
  ## Contributing
30
88
 
31
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/voxelamming_gem. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/voxelamming_gem/blob/master/CODE_OF_CONDUCT.md).
89
+ Bug reports and pull requests are welcome on GitHub at https://github.com/creativival/voxelamming_gem. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/voxelamming_gem/blob/master/CODE_OF_CONDUCT.md).
32
90
 
33
91
  ## License
34
92
 
data/index.html ADDED
@@ -0,0 +1,139 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>VoxelammingGem</title>
6
+ <style>
7
+ body {
8
+ font-family: sans-serif;
9
+ line-height: 1.6;
10
+ margin: 2rem auto;
11
+ max-width: 800px;
12
+ padding: 0 1rem;
13
+ }
14
+
15
+ h1, h2, h3 {
16
+ margin-top: 1.5rem;
17
+ }
18
+
19
+ a {
20
+ color: #0645ad;
21
+ text-decoration: none;
22
+ }
23
+
24
+ a:hover {
25
+ text-decoration: underline;
26
+ }
27
+
28
+ img {
29
+ max-width: 100%;
30
+ height: auto;
31
+ }
32
+
33
+ pre {
34
+ background-color: #f5f5f5;
35
+ border: 1px solid #ccc;
36
+ overflow-x: auto;
37
+ padding: 1rem;
38
+ }
39
+
40
+ code {
41
+ font-family: monospace;
42
+ }
43
+
44
+ table {
45
+ border-collapse: collapse;
46
+ width: 100%;
47
+ }
48
+
49
+ th, td {
50
+ border: 1px solid #ccc;
51
+ padding: 0.5rem;
52
+ }
53
+
54
+ th {
55
+ background-color: #f0f0f0;
56
+ font-weight: bold;
57
+ }
58
+ </style>
59
+ </head>
60
+ <body>
61
+ <h1><a href="#voxelamminggem" id="voxelamminggem"></a>VoxelammingGem</h1>
62
+ <p>This Ruby package converts Python code into JSON format and sends it to the Voxelamming app using WebSockets, allowing users to create 3D voxel models by writing Ruby scripts.</p>
63
+ <h2><a href="#whats-voxelamming" id="whats-voxelamming"></a>What's Voxelamming?</h2>
64
+ <p align="center"><img src="https://creativival.github.io/voxelamming/image/voxelamming_icon.png" alt="Voxelamming Logo" width="200"/></p>
65
+ <p>Voxelamming is an AR programming learning app. Even programming beginners can learn programming visually and enjoyably. Voxelamming supports iPhones and iPads with iOS 16 or later, and Apple Vision Pro.</p>
66
+ <h2><a href="#resources" id="resources"></a>Resources</h2>
67
+ <ul>
68
+ <li><strong>Homepage:</strong> <a href="https://creativival.github.io/voxelamming/index.en">https://creativival.github.io/voxelamming/index.en</a></li>
69
+ <li><strong>Samples:</strong> <a href="https://github.com/creativival/voxelamming/tree/main/sample/ruby">https://github.com/creativival/voxelamming/tree/main/sample/ruby</a></li>
70
+ </ul>
71
+ <h2><a href="#installation" id="installation"></a>Installation</h2>
72
+ <pre><code class="bash">gem install voxelamming
73
+ </code></pre>
74
+ <h2><a href="#usage" id="usage"></a>Usage</h2>
75
+ <pre><code class="ruby">require 'voxelamming_gem'
76
+
77
+ room_name = '1000'
78
+ build_box = VoxelammingGem::BuildBox.new(room_name)
79
+
80
+ build_box.set_box_size(0.5)
81
+ build_box.set_build_interval(0.01)
82
+
83
+ for i in 0...100
84
+ build_box.create_box(-1, i, 0, r: 0, g: 1, b: 1)
85
+ build_box.create_box(0, i, 0, r: 1, g: 0, b: 0)
86
+ build_box.create_box(1, i, 0, r: 1, g: 1, b: 0)
87
+ build_box.create_box(2, i, 0, r: 0, g: 1, b: 1)
88
+ end
89
+
90
+ for i in 0...50
91
+ build_box.remove_box(0, i * 2, 0)
92
+ build_box.remove_box(1, i * 2 + 1, 0)
93
+ end
94
+
95
+ build_box.send_data
96
+ </code></pre>
97
+ <p>This code snippet demonstrates a simple example where a red voxel is created at a specific location. You can use various functions provided by the <code>BuildBox</code> class to build more complex models.</p>
98
+ <h4><a href="#method-description" id="method-description"></a>Method description</h4>
99
+ <table>
100
+ <thead>
101
+ <tr><th> Method name </th><th> Description </th><th> Arguments </th></tr>
102
+ </thead>
103
+ <tbody>
104
+ <tr><td> <code>set_room_name(room_name)</code> </td><td> Sets the room name for communicating with the device. </td><td> <code>room_name</code>: Room name (string) </td></tr>
105
+ <tr><td> <code>set_box_size(size)</code> </td><td> Sets the size of the voxel (default: 1.0). </td><td> <code>size</code>: Size (float) </td></tr>
106
+ <tr><td> <code>set_build_interval(interval)</code> </td><td> Sets the placement interval of the voxels (default: 0.01 seconds). </td><td> <code>interval</code>: Interval (float) </td></tr>
107
+ <tr><td> <code>change_shape(shape)</code> </td><td> Changes the shape of the voxel. </td><td> <code>shape</code>: Shape ("box", "square", "plane") </td></tr>
108
+ <tr><td> <code>change_material(is_metallic, roughness)</code> </td><td> Changes the material of the voxel. </td><td> <code>is_metallic</code>: Whether to make it metallic (boolean), <code>roughness</code>: Roughness (float) </td></tr>
109
+ <tr><td> <code>create_box(x, y, z, r, g, b, alpha)</code> </td><td> Places a voxel. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Position (float), <code>r</code>, <code>g</code>, <code>b</code>, <code>alpha</code>: Color (float, 0-1) </td></tr>
110
+ <tr><td> <code>create_box(x, y, z, texture)</code> </td><td> Places a voxel with texture. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Position (float), <code>texture</code>: Texture name (string) </td></tr>
111
+ <tr><td> <code>remove_box(x, y, z)</code> </td><td> Removes a voxel. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Position (float) </td></tr>
112
+ <tr><td> <code>write_sentence(sentence, x, y, z, r, g, b, alpha)</code> </td><td> Draws a string with voxels. </td><td> <code>sentence</code>: String (string), <code>x</code>, <code>y</code>, <code>z</code>: Position (float), <code>r</code>, <code>g</code>, <code>b</code>, <code>alpha</code>: Color (float, 0-1) </td></tr>
113
+ <tr><td> <code>set_light(x, y, z, r, g, b, alpha, intensity, interval, light_type)</code> </td><td> Places a light. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Position (float), <code>r</code>, <code>g</code>, <code>b</code>, <code>alpha</code>: Color (float, 0-1), <code>intensity</code>: Intensity (float), <code>interval</code>: Blinking interval (float), <code>light_type</code>: Type of light ("point", "spot", "directional") </td></tr>
114
+ <tr><td> <code>set_command(command)</code> </td><td> Executes a command. </td><td> <code>command</code>: Command ("axis", "japaneseCastle", "float", "liteRender") </td></tr>
115
+ <tr><td> <code>draw_line(x1, y1, z1, x2, y2, z2, r, g, b, alpha)</code> </td><td> Draws a line between two points. </td><td> <code>x1</code>, <code>y1</code>, <code>z1</code>: Starting point (float), <code>x2</code>, <code>y2</code>, <code>z2</code>: Ending point (float), <code>r</code>, <code>g</code>, <code>b</code>, <code>alpha</code>: Color (float, 0-1) </td></tr>
116
+ <tr><td> <code>send_data(name)</code> </td><td> Sends voxel data to the device; if the name argument is set, the voxel data can be stored and reproduced as history. </td><td> </td></tr>
117
+ <tr><td> <code>clear_data()</code> </td><td> Initializes voxel data. </td><td> </td></tr>
118
+ <tr><td> <code>translate(x, y, z, pitch, yaw, roll)</code> </td><td> Moves and rotates the coordinate system of the voxel. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Translation amount (float), <code>pitch</code>, <code>yaw</code>, <code>roll</code>: Rotation amount (float) </td></tr>
119
+ <tr><td> <code>animate(x, y, z, pitch, yaw, roll, scale, interval)</code> </td><td> Animates a voxel. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Translation amount (float), <code>pitch</code>, <code>yaw</code>, <code>roll</code>: Rotation amount (float), <code>scale</code>: Scale (float), <code>interval</code>: Interval (float) </td></tr>
120
+ <tr><td> <code>animate_global(x, y, z, pitch, yaw, roll, scale, interval)</code> </td><td> Animates all voxels. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Translation amount (float), <code>pitch</code>, <code>yaw</code>, <code>roll</code>: Rotation amount (float), <code>scale</code>: Scale (float), <code>interval</code>: Interval (float) </td></tr>
121
+ <tr><td> <code>push_matrix()</code> </td><td> Saves the current coordinate system to the stack. </td><td> </td></tr>
122
+ <tr><td> <code>pop_matrix()</code> </td><td> Restores the coordinate system from the stack. </td><td> </td></tr>
123
+ <tr><td> <code>frame_in()</code> </td><td> Starts recording a frame. </td><td> </td></tr>
124
+ <tr><td> <code>frame_out()</code> </td><td> Ends recording a frame. </td><td> </td></tr>
125
+ <tr><td> <code>set_frame_fps(fps)</code> </td><td> Sets the frame rate (default: 2). </td><td> <code>fps</code>: Frame rate (int) </td></tr>
126
+ <tr><td> <code>set_frame_repeats(repeats)</code> </td><td> Sets the number of frame repetitions (default: 10). </td><td> <code>repeats</code>: Number of repetitions (int) </td></tr>
127
+ </tbody>
128
+ </table>
129
+ <h2><a href="#development" id="development"></a>Development</h2>
130
+ <p>After checking out the repo, run <code>bin/setup</code> to install dependencies. Then, run <code>rake test</code> to run the tests. You can also run <code>bin/console</code> for an interactive prompt that will allow you to experiment.</p>
131
+ <p>To install this gem onto your local machine, run <code>bundle exec rake install</code>. To release a new version, update the version number in <code>version.rb</code>, and then run <code>bundle exec rake release</code>, which will create a git tag for the version, push git commits and the created tag, and push the <code>.gem</code> file to <a href="https://rubygems.org">rubygems.org</a>.</p>
132
+ <h2><a href="#contributing" id="contributing"></a>Contributing</h2>
133
+ <p>Bug reports and pull requests are welcome on GitHub at <a href="https://github.com/[USERNAME]/voxelamming_gem">https://github.com/[USERNAME]/voxelamming_gem</a>. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the <a href="https://github.com/[USERNAME]/voxelamming_gem/blob/master/CODE_OF_CONDUCT.md">code of conduct</a>.</p>
134
+ <h2><a href="#license" id="license"></a>License</h2>
135
+ <p>The gem is available as open source under the terms of the <a href="https://opensource.org/licenses/MIT">MIT License</a>.</p>
136
+ <h2><a href="#code-of-conduct" id="code-of-conduct"></a>Code of Conduct</h2>
137
+ <p>Everyone interacting in the VoxelammingGem project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the <a href="https://github.com/[USERNAME]/voxelamming_gem/blob/master/CODE_OF_CONDUCT.md">code of conduct</a>.</p>
138
+ </body>
139
+ </html>
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module VoxelammingGem
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.3"
5
5
  end
@@ -491,9 +491,7 @@ module VoxelammingGem
491
491
  end
492
492
 
493
493
  # Map
494
- $column_num, $row_num = 257, 257
495
-
496
- def self.get_map_data_from_csv(csv_file, height_scale)
494
+ def self.get_map_data_from_csv(csv_file, height_scale, column_num = 257, row_num = 257)
497
495
  # csvファイルから地図データを読み込み
498
496
  heights = []
499
497
 
@@ -507,7 +505,7 @@ module VoxelammingGem
507
505
  # puts "heights: #{heights}"
508
506
 
509
507
  max_height = heights.max.floor
510
- box_positions = (0...$row_num).map { |i| heights[i * $column_num, $column_num] }
508
+ box_positions = (0...row_num).map { |i| heights[i * column_num, column_num] }
511
509
  puts "max_height: #{max_height}"
512
510
  # puts "box_positions: #{box_positions}"
513
511
  { 'boxes' => box_positions, 'max_height' => max_height }
data/main_make_model.rb CHANGED
@@ -6,7 +6,7 @@ build_box = VoxelammingGem::BuildBox.new(room_name)
6
6
  build_box.set_box_size(0.5)
7
7
  build_box.set_build_interval(0.01)
8
8
 
9
- ply_file_name = 'piyo.ply'
9
+ ply_file_name = 'ply_file/piyo.ply'
10
10
 
11
11
  boxes = VoxelammingGem.get_boxes_from_ply(ply_file_name)
12
12
  # puts boxes
data/main_map.rb CHANGED
@@ -8,7 +8,7 @@ build_box.set_build_interval(0.001)
8
8
  build_box.set_command('liteRender')
9
9
 
10
10
  column_num, row_num = 257, 257
11
- csv_file = 'map_38_138_100km.csv'
11
+ csv_file = 'map_file/map_38_138_100km.csv'
12
12
  height_scale = 100
13
13
  high_color = [0.5, 0, 0]
14
14
  low_color = [0, 1, 0]
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: voxelamming_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - creativival
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-25 00:00:00.000000000 Z
11
+ date: 2024-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faye-websocket
@@ -24,9 +24,10 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.11.3
27
- description: Voxelamming is an AR programming learning app. Even programming beginners
28
- can learn programming visually and enjoyably. Voxelamming supports iPhones and iPads
29
- with iOS 16 or later, and Apple Vision Pro.
27
+ description: |-
28
+ Development of `voxelamming_gem` has been terminated. Please use `voxelamming` as a successor.
29
+
30
+ Voxelamming is an AR programming learning app. Even programming beginners can learn programming visually and enjoyably. Voxelamming supports iPhones and iPads with iOS 16 or later, and Apple Vision Pro.
30
31
  email:
31
32
  - creativival@gmail.com
32
33
  executables: []
@@ -34,10 +35,12 @@ extensions: []
34
35
  extra_rdoc_files: []
35
36
  files:
36
37
  - ".ruby-version"
38
+ - CHANGELOG.md
37
39
  - CODE_OF_CONDUCT.md
38
40
  - LICENSE.txt
39
41
  - README.md
40
42
  - Rakefile
43
+ - index.html
41
44
  - lib/matrix_util.rb
42
45
  - lib/voxelamming_gem.rb
43
46
  - lib/voxelamming_gem/version.rb
@@ -52,6 +55,9 @@ files:
52
55
  - ply_file/frog5.ply
53
56
  - ply_file/piyo.ply
54
57
  - sig/voxelamming_gem.rbs
58
+ - voxelamming_gem-0.1.0.gem
59
+ - voxelamming_gem-0.1.1.gem
60
+ - voxelamming_gem-0.1.2.gem
55
61
  homepage: https://creativival.github.io/voxelamming
56
62
  licenses:
57
63
  - MIT