hiiro 0.1.354 → 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: 9a368e5a5a2c932aa609faa46c699b3a112e835908fe7788cdab234f583a92ee
4
- data.tar.gz: 2153cf58429b63859d220615d9a5404fa14e1388ce735bc385d399c2856ca204
3
+ metadata.gz: e3daedf7c428c0e86d982ae4b826a2be32863f724aa97ea6a7472d9c3b81200f
4
+ data.tar.gz: be0456ca2654b35df7dbd7f3d4b69ae9d25f25b3a29df48bdc0c29ba6bbd28ff
5
5
  SHA512:
6
- metadata.gz: 422c65b26c19e47db3a28eb5643f9b525ba862dbfcdab1d75ada76f43b1c3add1bc70ce97183d4934a06403fc6bb4fa244b8821127c0a0e6ec8b9778e8e022a0
7
- data.tar.gz: 1b005ce7ebb9acec393d6587d939ef1623c5d69a1d8869bf9540ca1e4e4095008bc4d6a3f0fa76bbcac6ac7849059b8166ae2e6fb08073ed31d48d186356459f
6
+ metadata.gz: 6d6ff193b5f0a88f61059cd16a53ee4d3dec836a13975a10dee235785af5ea131cb22822de67eed08d3095ef12f42ffbe32bce689ba2cd39239a8c9768367d0f
7
+ data.tar.gz: 8feea26a31a50853a1fafe91d56bd3becf221df8f2cd39a15ade2c9058cc455793f42582e87c484b74fbfcc0f2833190bd9c34cc11384e2f46764d775e24c5f7
data/CHANGELOG.md CHANGED
@@ -2,9 +2,14 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.1.355] - 2026-05-19
6
+
5
7
  ### Added
6
8
  - `h task from <worktree-path> <task-name>` registers an existing git worktree from any path as a Hiiro task and switches to it.
7
9
 
10
+ ### Fixed
11
+ - `h task list` now shows external tasks registered with slash-containing names like `menu/ids`.
12
+
8
13
  ## [0.1.353] - 2026-04-26
9
14
 
10
15
  ### Added
@@ -332,4 +337,4 @@
332
337
  - `h db cleanup` subcommand to preview and prune duplicate rows from SQLite tables
333
338
 
334
339
  ### Fixed
335
- - Prevent duplicate pinned_prs during import with `insert_conflict` and per-row rescue
340
+ - Prevent duplicate pinned_prs during import with `insert_conflict` and per-row rescue
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/tasks.rb CHANGED
@@ -1543,7 +1543,7 @@ class Hiiro
1543
1543
  end
1544
1544
 
1545
1545
  def subtask?
1546
- name.include?('/')
1546
+ name.include?('/') && !absolute_tree?
1547
1547
  end
1548
1548
 
1549
1549
  def top_level?
data/lib/hiiro/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Hiiro
2
- VERSION = "0.1.354"
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.354
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