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 +4 -4
- data/lib/hiiro/shell.rb +1 -0
- data/lib/hiiro/version.rb +1 -1
- metadata +6 -4
- data/lib/hiiro/bins.rb +0 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e3daedf7c428c0e86d982ae4b826a2be32863f724aa97ea6a7472d9c3b81200f
|
|
4
|
+
data.tar.gz: be0456ca2654b35df7dbd7f3d4b69ae9d25f25b3a29df48bdc0c29ba6bbd28ff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d6ff193b5f0a88f61059cd16a53ee4d3dec836a13975a10dee235785af5ea131cb22822de67eed08d3095ef12f42ffbe32bce689ba2cd39239a8c9768367d0f
|
|
7
|
+
data.tar.gz: 8feea26a31a50853a1fafe91d56bd3becf221df8f2cd39a15ade2c9058cc455793f42582e87c484b74fbfcc0f2833190bd9c34cc11384e2f46764d775e24c5f7
|
data/lib/hiiro/shell.rb
CHANGED
data/lib/hiiro/version.rb
CHANGED
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.
|
|
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:
|
|
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:
|
|
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
|