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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e03fd33f856cbaade06505c5e962980504107726d39d6ec630b16e2d4c75b480
4
- data.tar.gz: eb7bf1b39ea4acae4e7d7cfe4d7d70d14cd7335e65c4b74dc7c7e37b697eb52b
3
+ metadata.gz: fb994904ecf8589ee8d168209baa7fc6d61ae7db559612d2a699e8713ce71ab4
4
+ data.tar.gz: 66bcfbc82970f35f21d5e06f86e3318236e490bf4fc59986fe93bb93035d04dd
5
5
  SHA512:
6
- metadata.gz: 9c85bc9f63b75685b60fc83d3e247c84cd3ee02e981608aadf810e080ec7c22043bf0d0ff5908678ed244ad40a2a0e9653d67eaefd77071b1cde15df81e2f641
7
- data.tar.gz: 10e5e39e7185c0c3863a0958fe20085d62f2603bfe1621a5d92dbb16caff6d7183d1a8779f45a5d2e1624b99c54ea116f1dbe8318f6b78d2bc2a47ade2965d7d
6
+ metadata.gz: 1d3349d72139c7ae68e1535046decb64970160c17f662e0e8c40d319a24f55a3d12f3525a6d72281e1afdf7a42958ab733886ed8dab5234f15896b115f134ddd
7
+ data.tar.gz: 63173f4724a9aaf097f3fb5e11d468f51197191c743e40badd2464fbd89226c8e11133ab79a35c6e2c1a4aaf1c9ef4ca0bd286aa8b904a59369166161486f643
data/LICENSE CHANGED
@@ -1,7 +1,7 @@
1
- Copyright © 2025 <Sean Gregory>
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 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:
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 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.
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
@@ -12,7 +12,7 @@ A Ruby library for authoring GUI applications
12
12
  In your Gemfile
13
13
 
14
14
  ```ruby
15
- gem "hokusai-zero", "0.1.9"
15
+ gem "hokusai-zero", "0.2.1"
16
16
  ```
17
17
 
18
18
  ## In order to run an application, you will need to install a backend
data/hokusai.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'hokusai-zero'
3
- s.version = '0.2.0'
3
+ s.version = '0.2.2'
4
4
  s.licenses = ['MIT']
5
5
  s.summary = "A Ruby library for writing GUI applications"
6
6
  s.authors = ["skinnyjames"]
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "securerandom"
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 = SecureRandom.hex(6).freeze
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.0
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: 2025-05-30 00:00:00.000000000 Z
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.5.18
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: []