hiiro 0.1.280 → 0.1.281

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: c86b1990635355b7028465d785137a29092594900b220e679107138cdedf5821
4
- data.tar.gz: fdd08045ed76b8ca7d288fa1f49358eb65649c35f043ce35745114c63af920f0
3
+ metadata.gz: 2971b824a362f42ccbe96d8b7f0dd1c149564d13608cb6c7b516fb0061a97b4e
4
+ data.tar.gz: 3f157760a16af934d3a6539d2dc0d446a1c80717479730d777f51d1c24d0d6b3
5
5
  SHA512:
6
- metadata.gz: e4a7443498c3902dc536b39df7d128782f5cd3ad8be6b3acb75b50a93b431e27aff7b68e87b3531d860b7cf7bf82c0f658fad17663a5d2f42098bb7cbf605f2b
7
- data.tar.gz: 1acd39aadcadd0dca8abdccfbe3e91d286cffbeb9e40cc5a2d3a139022c9c324de6c030573848ca0571d5d6dcb3a67785e19c0b2d677fd10d01d1e9c733ca25d
6
+ metadata.gz: cb190b23192eb0a4d6a2f7ceb46ed74dcb5250c292afab7d85050ea5baf81bf4b240b45e1ac4b19102a24921c7268e7c3b150f54c4b9bc5cffba6750f6da530a
7
+ data.tar.gz: 000f1e725f76ed5e001d45c0df1c4f9f5f43132508c9da4c5d71053526b62cd7e3ff5fda6fed635534599d15f733fede30ac70ab278394bf78013c6a460b1ecb
data/CHANGELOG.md CHANGED
@@ -1 +1 @@
1
- Done. CHANGELOG.md has been updated with v0.1.280 for 2026-03-25. The new section documents all the features, changes, and refactorings from the recent commits, organized by Added and Changed categories.
1
+ Done.
data/lib/hiiro/queue.rb CHANGED
@@ -825,37 +825,36 @@ class Hiiro
825
825
  new(FrontMatterParser::Parser.parse_file(path), hiiro:)
826
826
  end
827
827
 
828
- attr_reader :hiiro, :doc, :frontmatter, :prompt
828
+ attr_reader :hiiro, :doc, :frontmatter
829
829
 
830
830
  def initialize(doc, hiiro: nil)
831
831
  @hiiro = hiiro
832
832
  @doc = doc
833
- @frontmatter = doc.front_matter
834
- @prompt = prompt
833
+ @frontmatter = doc.front_matter || {}
835
834
  end
836
835
 
837
836
  def ignore?
838
- doc.front_matter['ignore'] == true
837
+ frontmatter['ignore'] == true
839
838
  end
840
839
 
841
840
  def task_name
842
- doc.front_matter['task_name']
841
+ frontmatter['task_name']
843
842
  end
844
843
 
845
844
  def tree_name
846
- doc.front_matter['tree_name']
845
+ frontmatter['tree_name']
847
846
  end
848
847
 
849
848
  def app_name
850
- doc.front_matter['app']
849
+ frontmatter['app']
851
850
  end
852
851
 
853
852
  def rel_dir
854
- doc.front_matter['dir']
853
+ frontmatter['dir']
855
854
  end
856
855
 
857
856
  def session_name
858
- doc.front_matter['session_name'] || task&.session_name
857
+ frontmatter['session_name'] || task&.session_name
859
858
  end
860
859
 
861
860
  def task
data/lib/hiiro/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Hiiro
2
- VERSION = "0.1.280"
2
+ VERSION = "0.1.281"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hiiro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.280
4
+ version: 0.1.281
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Toyota