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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57ff384f94afad535921488b1c634599ab75aca32ba5197428cf23bbe890d329
4
- data.tar.gz: 0b8c7cb7140ce12c8902d45a36d5b56b6174e50103f573e10a07d73a04697b39
3
+ metadata.gz: f5abeed29942075393a61c40a6e3e51ba0202ab736038e0faee8665053ed1ea2
4
+ data.tar.gz: 711f8e2557b68fec857742231d98ddc8c4f1845d4d663f80c459274592bc94e0
5
5
  SHA512:
6
- metadata.gz: ac3ee80f94fa2ed0ca2ecf3bacb39a397a2e51565b5e95ade9013d9338edab0036ecc19d3d07c03712c1d20d983d40fc56afa750ddade1932842787779825fde
7
- data.tar.gz: 66243d08ce6e8cd94cb7c0e5de5340540abec16da2d2658fd5ff00160acd5c62fb5ddcc9613fca12a922b518c8eda81ef75582a37cd5999d02e87b7dc48361a3
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.
@@ -175,7 +175,7 @@ module Bundlebun
175
175
  #
176
176
  # @see #system
177
177
  # @see #exec
178
- def initialize(arguments = '')
178
+ def initialize(arguments)
179
179
  @arguments = arguments
180
180
  end
181
181
 
Binary file
@@ -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: (?String | Array[String] arguments) -> void
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundlebun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1.1.3.11
4
+ version: 0.4.1.1.3.12
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Yaroslav Markin