hiiro 0.1.355 → 0.1.356

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: b5e652c565556646b890c37cfcdaa762d1362944e1a24fbc19cef0789f08481f
4
- data.tar.gz: 27a10d0adb0903c1d8eb49de3cd24651df3bd363534d0de637719ac6d8c49960
3
+ metadata.gz: e3daedf7c428c0e86d982ae4b826a2be32863f724aa97ea6a7472d9c3b81200f
4
+ data.tar.gz: be0456ca2654b35df7dbd7f3d4b69ae9d25f25b3a29df48bdc0c29ba6bbd28ff
5
5
  SHA512:
6
- metadata.gz: 21031d54f38b5cf6de9689de327647c375c3022bb42b3142e35d316dff8f2d31f8f4fd307cb58005df8dcbf790448d0111fe50507534d86dc0f73017708c51de
7
- data.tar.gz: e60b58cc66e69933da7bd955ebd893b275b171eed6927b608dc2178edf0918992d0d0adee401454d76221422b04034d629be2e81f9d1681015cc93415b28ce78
6
+ metadata.gz: 6d6ff193b5f0a88f61059cd16a53ee4d3dec836a13975a10dee235785af5ea131cb22822de67eed08d3095ef12f42ffbe32bce689ba2cd39239a8c9768367d0f
7
+ data.tar.gz: 8feea26a31a50853a1fafe91d56bd3becf221df8f2cd39a15ade2c9058cc455793f42582e87c484b74fbfcc0f2833190bd9c34cc11384e2f46764d775e24c5f7
data/lib/hiiro/shell.rb CHANGED
@@ -85,6 +85,7 @@ class Hiiro
85
85
  loop do
86
86
  chunk = io.readpartial(4096)
87
87
  tee&.write(chunk)
88
+ puts chunk
88
89
  output << chunk
89
90
  rescue EOFError
90
91
  break
data/lib/hiiro/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Hiiro
2
- VERSION = "0.1.355"
2
+ VERSION = "0.1.356"
3
3
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hiiro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.355
4
+ version: 0.1.356
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Toyota
8
+ autorequire:
8
9
  bindir: exe
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2026-06-14 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: pry
@@ -326,7 +327,6 @@ files:
326
327
  - lib/hiiro/app_record.rb
327
328
  - lib/hiiro/assignment.rb
328
329
  - lib/hiiro/background.rb
329
- - lib/hiiro/bins.rb
330
330
  - lib/hiiro/branch.rb
331
331
  - lib/hiiro/capture.rb
332
332
  - lib/hiiro/check_run.rb
@@ -406,6 +406,7 @@ metadata:
406
406
  homepage_uri: https://github.com/unixsuperhero/hiiro
407
407
  source_code_uri: https://github.com/unixsuperhero/hiiro
408
408
  changelog_uri: https://github.com/unixsuperhero/hiiro/blob/main/CHANGELOG.md
409
+ post_install_message:
409
410
  rdoc_options: []
410
411
  require_paths:
411
412
  - lib
@@ -420,7 +421,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
420
421
  - !ruby/object:Gem::Version
421
422
  version: '0'
422
423
  requirements: []
423
- rubygems_version: 4.0.3
424
+ rubygems_version: 3.3.7
425
+ signing_key:
424
426
  specification_version: 4
425
427
  summary: A lightweight CLI framework for Ruby
426
428
  test_files: []
data/lib/hiiro/bins.rb DELETED
@@ -1,19 +0,0 @@
1
- class Hiiro
2
- class Bins
3
- PATH = ENV['PATH']
4
-
5
- def self.path = PATH
6
- def self.paths = path.split(?:).map(&:strip).uniq
7
-
8
- def self.glob(*names)
9
- path_glob = [?{, paths.join(?,), ?}].join
10
- name_glob = [?{, names.flatten.compact.join(?,), ?}].join
11
-
12
- Dir[File.join(path_glob, name_glob)].select(&File.method(:executable?))
13
- end
14
-
15
- def self.all
16
- Dir[glob('*')].select(&File.method(:executable?))
17
- end
18
- end
19
- end