hokusai-zero 0.2.0 → 0.2.2
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 +4 -4
- data/LICENSE +3 -3
- data/README.md +1 -1
- data/hokusai.gemspec +1 -1
- data/ui/src/hokusai/node.rb +2 -2
- metadata +3 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb994904ecf8589ee8d168209baa7fc6d61ae7db559612d2a699e8713ce71ab4
|
4
|
+
data.tar.gz: 66bcfbc82970f35f21d5e06f86e3318236e490bf4fc59986fe93bb93035d04dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d3349d72139c7ae68e1535046decb64970160c17f662e0e8c40d319a24f55a3d12f3525a6d72281e1afdf7a42958ab733886ed8dab5234f15896b115f134ddd
|
7
|
+
data.tar.gz: 63173f4724a9aaf097f3fb5e11d468f51197191c743e40badd2464fbd89226c8e11133ab79a35c6e2c1a4aaf1c9ef4ca0bd286aa8b904a59369166161486f643
|
data/LICENSE
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
Copyright
|
1
|
+
Copyright (c) 2025 Sean Gregory
|
2
2
|
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
4
|
|
5
5
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
6
|
|
7
|
-
THE SOFTWARE IS PROVIDED
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
data/hokusai.gemspec
CHANGED
data/ui/src/hokusai/node.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require "
|
3
|
+
require "random/formatter"
|
4
4
|
require "forwardable"
|
5
5
|
require_relative "./node_mounter"
|
6
6
|
require_relative "./meta"
|
@@ -21,7 +21,7 @@ module Hokusai
|
|
21
21
|
def initialize(ast, portal = nil)
|
22
22
|
@ast = ast
|
23
23
|
@portal = portal
|
24
|
-
@uuid =
|
24
|
+
@uuid = Random.hex(6).freeze
|
25
25
|
@meta = Meta.new
|
26
26
|
end
|
27
27
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hokusai-zero
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- skinnyjames
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: ffi
|
@@ -94,7 +93,6 @@ dependencies:
|
|
94
93
|
- - ">="
|
95
94
|
- !ruby/object:Gem::Version
|
96
95
|
version: '0'
|
97
|
-
description:
|
98
96
|
email: zero@skinnyjames.net
|
99
97
|
executables: []
|
100
98
|
extensions:
|
@@ -297,7 +295,6 @@ licenses:
|
|
297
295
|
- MIT
|
298
296
|
metadata:
|
299
297
|
source_code_uri: https://codeberg.org/skinnyjames/hokusai
|
300
|
-
post_install_message:
|
301
298
|
rdoc_options: []
|
302
299
|
require_paths:
|
303
300
|
- ui/src
|
@@ -312,8 +309,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
312
309
|
- !ruby/object:Gem::Version
|
313
310
|
version: '0'
|
314
311
|
requirements: []
|
315
|
-
rubygems_version: 3.
|
316
|
-
signing_key:
|
312
|
+
rubygems_version: 3.6.7
|
317
313
|
specification_version: 4
|
318
314
|
summary: A Ruby library for writing GUI applications
|
319
315
|
test_files: []
|