legion-tty 0.4.34 → 0.4.35

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: 9e2bf2ff4d2171db26c98720da6d2283223e4249d6f3fabab912f6664d35408b
4
- data.tar.gz: fec7ca720f408c20b2d0309aca3c322d2de1c5ce66d38ac58efb754bbe217bb5
3
+ metadata.gz: 31b8e7a6dcba6b0327573f361400407394b176b79a115a9e3547c6e38c6523eb
4
+ data.tar.gz: 3f5bf51a8520ca9ab668067a03033467f344020f851b6b6545273b739889135c
5
5
  SHA512:
6
- metadata.gz: 8e8d54385bffe32ce00054d8040024536118972cf9344e54cdfc4f8269671e9d336b7b080f770e73376370d7f171facdc62d1c29363596bcafdb981e91f574e3
7
- data.tar.gz: fa8259e79bdece95752fb5703f00a3eaffa75d0f69196493811090f9a5ec4aea357f5c7b25589a43eb8136a248107ec55e87d47c7dc912d78d668ba51fa6469e
6
+ metadata.gz: 6b4606e9588d44d94142722851e0b16d2d31e39c3c3ce3054eca965eeac432cf36c79b9ffb2d50e6abf005a37076df1890548f29586a44656f4ce290faf7ef90
7
+ data.tar.gz: 8ac2d9587039192b05262e4ab285b7e1791d41f95c9d58990f04cadcc98113e576019a886fe1130e5ce2ef515f6e85d541c948ac2011f5eacc91ef55e5fd8343
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.35] - 2026-03-25
4
+
5
+ ### Changed
6
+ - Guard bootsnap behind `LEGION_BOOTSNAP=true` env var in `exe/legion-tty`, default to disabled
7
+
3
8
  ## [0.4.34] - 2026-03-24
4
9
 
5
10
  ### Fixed
data/exe/legion-tty CHANGED
@@ -3,14 +3,16 @@
3
3
 
4
4
  RubyVM::YJIT.enable if defined?(RubyVM::YJIT)
5
5
 
6
- require 'bootsnap'
7
- Bootsnap.setup(
8
- cache_dir: File.expand_path('~/.legionio/cache/bootsnap'),
9
- development_mode: false,
10
- load_path_cache: true,
11
- compile_cache_iseq: true,
12
- compile_cache_yaml: true
13
- )
6
+ if ENV['LEGION_BOOTSNAP'] == 'true' && Dir.exist?(File.expand_path('~/.legionio'))
7
+ require 'bootsnap'
8
+ Bootsnap.setup(
9
+ cache_dir: File.expand_path('~/.legionio/cache/bootsnap'),
10
+ development_mode: false,
11
+ load_path_cache: true,
12
+ compile_cache_iseq: true,
13
+ compile_cache_yaml: true
14
+ )
15
+ end
14
16
 
15
17
  require 'legion/tty'
16
18
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Legion
4
4
  module TTY
5
- VERSION = '0.4.34'
5
+ VERSION = '0.4.35'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legion-tty
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.34
4
+ version: 0.4.35
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity