bundlebun 0.4.1.1.3.11-aarch64-linux → 0.4.1.1.3.12-aarch64-linux
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/CHANGELOG.md +4 -0
- data/lib/bundlebun/runner.rb +1 -1
- data/lib/bundlebun/vendor/bun/bun +0 -0
- data/sig/bundlebun/runner.rbs +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5abeed29942075393a61c40a6e3e51ba0202ab736038e0faee8665053ed1ea2
|
|
4
|
+
data.tar.gz: 711f8e2557b68fec857742231d98ddc8c4f1845d4d663f80c459274592bc94e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da0fc2e66470c070fe111fc2acdbb547153785733647a4b7004d67af55e9f11a873ee727d6f4764b9fcb4afb7812e85bb82cff460507ed99cd8630671437d1c4
|
|
7
|
+
data.tar.gz: 7651021b19bcedfed721633991c799a2bb114b227998ca8a783a83d9235826e49aa4311499a643d8fcab841b2290edb6b655b2eda2f9d2abd7fad682e009bc47
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [Unreleased]
|
|
2
|
+
|
|
3
|
+
- It makes no sense to run Bun without arguments, so no-argument `Bundlebun.call` / `exec` / `system` calls now raise `ArgumentError`.
|
|
4
|
+
|
|
1
5
|
## [0.4.1] - 2026-03-08
|
|
2
6
|
|
|
3
7
|
- Bun is now executed with argv-safe `exec` / `system` calls instead of flattening arguments into a single string to preserve values with spaces correctly.
|
data/lib/bundlebun/runner.rb
CHANGED
|
Binary file
|
data/sig/bundlebun/runner.rbs
CHANGED
|
@@ -21,7 +21,7 @@ module Bundlebun
|
|
|
21
21
|
def self.binstub_or_binary_path: () -> String
|
|
22
22
|
def self.binstub_exist?: () -> bool
|
|
23
23
|
|
|
24
|
-
def initialize: (
|
|
24
|
+
def initialize: (String | Array[String] arguments) -> void
|
|
25
25
|
|
|
26
26
|
# Replaces the current Ruby process with Bun. Never returns.
|
|
27
27
|
def exec: () -> bot
|