mini-max-rb 0.0.1

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.
Files changed (30) hide show
  1. checksums.yaml +7 -0
  2. data/bootsnap-1.24.6/CHANGELOG.md +473 -0
  3. data/bootsnap-1.24.6/LICENSE.txt +22 -0
  4. data/bootsnap-1.24.6/README.md +391 -0
  5. data/bootsnap-1.24.6/exe/bootsnap +5 -0
  6. data/bootsnap-1.24.6/ext/bootsnap/bootsnap.c +1235 -0
  7. data/bootsnap-1.24.6/ext/bootsnap/extconf.rb +34 -0
  8. data/bootsnap-1.24.6/lib/bootsnap/bundler.rb +16 -0
  9. data/bootsnap-1.24.6/lib/bootsnap/cli/worker_pool.rb +208 -0
  10. data/bootsnap-1.24.6/lib/bootsnap/cli.rb +258 -0
  11. data/bootsnap-1.24.6/lib/bootsnap/compile_cache/iseq.rb +229 -0
  12. data/bootsnap-1.24.6/lib/bootsnap/compile_cache/ruby_bug_22023_canary.rb +1 -0
  13. data/bootsnap-1.24.6/lib/bootsnap/compile_cache/yaml.rb +344 -0
  14. data/bootsnap-1.24.6/lib/bootsnap/compile_cache.rb +47 -0
  15. data/bootsnap-1.24.6/lib/bootsnap/explicit_require.rb +56 -0
  16. data/bootsnap-1.24.6/lib/bootsnap/load_path_cache/cache.rb +241 -0
  17. data/bootsnap-1.24.6/lib/bootsnap/load_path_cache/change_observer.rb +84 -0
  18. data/bootsnap-1.24.6/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb +42 -0
  19. data/bootsnap-1.24.6/lib/bootsnap/load_path_cache/core_ext/loaded_features.rb +19 -0
  20. data/bootsnap-1.24.6/lib/bootsnap/load_path_cache/loaded_features_index.rb +159 -0
  21. data/bootsnap-1.24.6/lib/bootsnap/load_path_cache/path.rb +143 -0
  22. data/bootsnap-1.24.6/lib/bootsnap/load_path_cache/path_scanner.rb +127 -0
  23. data/bootsnap-1.24.6/lib/bootsnap/load_path_cache/store.rb +132 -0
  24. data/bootsnap-1.24.6/lib/bootsnap/load_path_cache.rb +80 -0
  25. data/bootsnap-1.24.6/lib/bootsnap/rake.rb +14 -0
  26. data/bootsnap-1.24.6/lib/bootsnap/setup.rb +5 -0
  27. data/bootsnap-1.24.6/lib/bootsnap/version.rb +5 -0
  28. data/bootsnap-1.24.6/lib/bootsnap.rb +202 -0
  29. data/mini-max-rb.gemspec +12 -0
  30. metadata +69 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b0e117fa13b3c4edbe03c43af9d1e5c1ff3911478136b5c52f1f8536be344484
4
+ data.tar.gz: 8c4eaa0938cbfcaac5f8b745d0ee1bbc0aceb710867b85cafe2e53cfebcba8e5
5
+ SHA512:
6
+ metadata.gz: 32e3383c5f5d528aed1679217783bcf6974dea0832417c4eb2f490b3dfaddce778b7ac0a57a6a83ceba6350bf4a61a2cc808bde0cf508eea75156954d98776fe
7
+ data.tar.gz: a4e7f2bbbae7705499faa4218114749a0b88af03d873246c01ca4deebe217c28a7ac152b3e7310eecf2a8c56876e8722cf4b0758e0dfaa5361e9098752dd9bb1
@@ -0,0 +1,473 @@
1
+ # Unreleased
2
+
3
+ # 1.24.6
4
+
5
+ * Fix detection of Ruby bug #22023 on some patch versions of Ruby 3.4, and properly apply the workaround.
6
+
7
+ # 1.24.5
8
+
9
+ * No longer load the config file by default when setup is done manually. This is so cli applications like homebrew
10
+ don't mistakenly load another app's boostnap config.
11
+
12
+ # 1.24.4
13
+
14
+ * Fix several compatibility issues with Ruby `4.0.4`, particularly the `should not compile with coverage` error. See #547.
15
+ * Fix `Bootsnap.enable_frozen_string_literal` to work even when coverage is enabled. Unfortunately only possible on Ruby `4.0.4+`.
16
+ On older rubies if coverage is enabled a warning will be issued and the feature won't work.
17
+ * Reduced cache files header size from 64 to 32 bytes, and got rid of the random padding element.
18
+ * Avoid leaking a private method in `Object` when testing for Parse.y bugs.
19
+
20
+ # 1.24.3
21
+
22
+ * Fix the `1.24.2` workaround to parse Ruby files with UTF-8 even when the `LANG` environment variable
23
+ is unset or set to `C`.
24
+
25
+ # 1.24.2
26
+
27
+ * Workaround two Ruby bugs in `RubyVM::InstructionSequence.compile_file`, that were causing
28
+ files to be loaded with the old Ruby parser instead of Prism, causing issues with some pattern matching syntax.
29
+ Ref: https://bugs.ruby-lang.org/issues/22023
30
+
31
+ # 1.24.1
32
+
33
+ * Fix encoding of Ruby source files loaded when `BOOTSNAP_READONLY` is set.
34
+ Files would incorectly be loaded in `ASCII-8BIT` causing literal strings outside
35
+ the pure ASCII range to have `ASCII-8BIT` encoding instead of `UTF-8`.
36
+ This bug was introduced in `1.24.0`.
37
+
38
+ # 1.24.0
39
+
40
+ * Added a hook API to customize Ruby compilation.
41
+
42
+ # 1.23.0
43
+
44
+ * Require Ruby 2.7.
45
+ * Fix support for absolute paths in `BOOTSNAP_IGNORE_DIRECTORIES`.
46
+
47
+ # 1.22.0
48
+
49
+ * Better fix for the `opendir` crash.
50
+ * Add `bootsnap/rake` for cleaning the bootsnap cache as part of `rake clobber`.
51
+
52
+ # 1.21.1
53
+
54
+ * Prevent a Ruby crash while scanning load path if `opendir` fails without setting `errno`.
55
+ According to the C spec this should not happen, but according to user reports, it did.
56
+
57
+ # 1.21.0
58
+
59
+ * Fix the `require` decorator to handle `Bootsnap.unload_cache!` being called.
60
+ * Minor optimization: Eagerly clear cache buffers to appease the GC.
61
+
62
+ # 1.20.1
63
+
64
+ * Handle broken symlinks in load path scanning code.
65
+ Should fix `Errno::ENOENT fstatat` issues some users have encountered after upgrading to 1.20.0.
66
+
67
+ # 1.20.0
68
+
69
+ * Optimized load path scanning with a C extension. Should be about 2x faster on supported platforms.
70
+
71
+ # 1.19.0
72
+
73
+ * Remove JSON parsing cache. Recent versions of the `json` gem are as fast as `msgpack` if not faster.
74
+
75
+ # 1.18.6
76
+
77
+ * Fix cgroup CPU limits detection in CLI.
78
+
79
+ # 1.18.5
80
+
81
+ * Attempt to detect a QEMU bug that can cause `bootsnap precompile` to hang forever when building ARM64 docker images
82
+ from x86_64 machines. See #495.
83
+ * Improve CLI to detect cgroup CPU limits and avoid spawning too many worker processes.
84
+
85
+ # 1.18.4
86
+
87
+ * Allow using bootsnap without bundler. See #488.
88
+ * Fix startup failure if the cache directory points to a broken symlink.
89
+
90
+ # 1.18.3
91
+
92
+ * Fix the cache corruption issue in the revalidation feature. See #474.
93
+ The cache revalidation feature remains opt-in for now, until it is more battle tested.
94
+
95
+ # 1.18.2
96
+
97
+ * Disable stale cache entries revalidation by default as it seems to cause cache corruption issues. See #471 and #474.
98
+ Will be re-enabled in a future version once the root cause is identified.
99
+ * Fix a potential compilation issue on some systems. See #470.
100
+
101
+ # 1.18.1
102
+
103
+ * Handle `EPERM` errors when opening files with `O_NOATIME`.
104
+
105
+ # 1.18.0
106
+
107
+ * `Bootsnap.instrumentation` now receive `:hit` events.
108
+ * Add `Bootsnap.log_stats!` to print hit rate statistics on process exit. Can also be enabled with `BOOTSNAP_STATS=1`.
109
+ * Revalidate stale cache entries by digesting the source content.
110
+ This should significantly improve performance in environments where `mtime` isn't preserved (e.g. CI systems doing a git clone, etc).
111
+ See #468.
112
+ * Open source files and cache entries with `O_NOATIME` when available to reduce disk accesses. See #469.
113
+ * `bootsnap precompile --gemfile` now look for `.rb` files in the whole gem and not just the `lib/` directory. See #466.
114
+
115
+ # 1.17.1
116
+
117
+ * Fix a compatibility issue with the `prism` library that ships with Ruby 3.3. See #463.
118
+ * Improved the `Kernel#require` decorator to not cause a method redefinition warning. See #461.
119
+
120
+ # 1.17.0
121
+
122
+ * Ensure `$LOAD_PATH.dup` is Ractor shareable to fix a conflict with `did_you_mean`.
123
+ * Allow to ignore directories using absolute paths.
124
+ * Support YAML and JSON CompileCache on TruffleRuby.
125
+ * Support LoadPathCache on TruffleRuby.
126
+
127
+ # 1.16.0
128
+
129
+ * Use `RbConfig::CONFIG["rubylibdir"]` instead of `RbConfig::CONFIG["libdir"]` to check for stdlib files. See #431.
130
+ * Fix the cached version of `YAML.load_file` being slightly more permissive than the default `Psych` one. See #434.
131
+ `Date` and `Time` values are now properly rejected, as well as aliases.
132
+ If this causes a regression in your application, it is recommended to load *trusted* YAML files with `YAML.unsafe_load_file`.
133
+
134
+ # 1.15.0
135
+
136
+ * Add a readonly mode, for environments in which the updated cache wouldn't be persisted. See #428 and #423.
137
+
138
+ # 1.14.0
139
+
140
+ * Require Ruby 2.6.
141
+ * Add a way to skip directories during load path scanning.
142
+ If you have large non-ruby directories in the middle of your load path, it can severely slow down scanning.
143
+ Typically this is a problem with `node_modules`. See #277.
144
+ * Fix `Bootsnap.unload_cache!`, it simply wouldn't work at all because of a merge mistake. See #421.
145
+
146
+ # 1.13.0
147
+
148
+ * Stop decorating `Kernel.load`. This used to be very useful in development because the Rails "classic" autoloader
149
+ was using `Kernel.load` in dev and `Kernel.require` in production. But Zeitwerk is now the default, and it doesn't
150
+ use `Kernel.load` at all.
151
+
152
+ People still using the classic autoloader might want to stick to `bootsnap 1.12`.
153
+
154
+ * Add `Bootsnap.unload_cache!`. Applications can call it at the end of their boot sequence when they know
155
+ no more code will be loaded to reclaim a bit of memory.
156
+
157
+ # 1.12.0
158
+
159
+ * `bootsnap precompile` CLI will now also precompile `Rakefile` and `.rake` files.
160
+
161
+ * Stop decorating `Module#autoload` as it was only useful for supporting Ruby 2.2 and older.
162
+
163
+ * Remove `uname` and other platform specific version from the cache keys. `RUBY_PLATFORM + RUBY_REVISION` should be
164
+ enough to ensure bytecode compatibility. This should improve caching for alpine based setups. See #409.
165
+
166
+ # 1.11.1
167
+
168
+ * Fix the `can't modify frozen Hash` error on load path cache mutation. See #411.
169
+
170
+ # 1.11.0
171
+
172
+ * Drop dependency on `fileutils`.
173
+
174
+ * Better respect `Kernel#require` duck typing. While it almost never comes up in practice, `Kernel#require`
175
+ follow a fairly intricate duck-typing protocol on its argument implemented as `rb_get_path(VALUE)` in MRI.
176
+ So when applicable we bind `rb_get_path` and use it for improved compatibility. See #396 and #406.
177
+
178
+ * Get rid of the `Kernel.require_relative` decorator by resolving `$LOAD_PATH` members to their real path.
179
+ This way we handle symlinks in `$LOAD_PATH` much more efficiently. See #402 for the detailed explanation.
180
+
181
+ * Drop support for Ruby 2.3 (to allow getting rid of the `Kernel.require_relative` decorator).
182
+
183
+ # 1.10.3
184
+
185
+ * Fix Regexp and Date type support in YAML compile cache. (#400)
186
+
187
+ * Improve the YAML compile cache to support `UTF-8` symbols. (#398, #399)
188
+ [The default `MessagePack` symbol serializer assumes all symbols are ASCII](https://github.com/msgpack/msgpack-ruby/pull/211),
189
+ because of this, non-ASCII compatible symbol would be restored with `ASCII_8BIT` encoding (AKA `BINARY`).
190
+ Bootsnap now properly cache them in `UTF-8`.
191
+
192
+ Note that the above only apply for actual YAML symbols (e..g `--- :foo`).
193
+ The issue is still present for string keys parsed with `YAML.load_file(..., symbolize_names: true)`, that is a bug
194
+ in `msgpack` that will hopefully be solved soon, see: https://github.com/msgpack/msgpack-ruby/pull/246
195
+
196
+ * Entirely disable the YAML compile cache if `Encoding.default_internal` is set to an encoding not supported by `msgpack`. (#398)
197
+ `Psych` coerce strings to `Encoding.default_internal`, but `MessagePack` doesn't. So in this scenario we can't provide
198
+ YAML caching at all without returning the strings in the wrong encoding.
199
+ This never came up in practice but might as well be safe.
200
+
201
+ # 1.10.2
202
+
203
+ * Reduce the `Kernel.require` extra stack frames some more. Now bootsnap should only add one extra frame per `require` call.
204
+
205
+ * Better check `freeze` option support in JSON compile cache.
206
+ Previously `JSON.load_file(..., freeze: true)` would be cached even when the msgpack version is missing support for it.
207
+
208
+ # 1.10.1
209
+
210
+ * Fix `Kernel#autoload`'s fallback path always being executed.
211
+
212
+ * Consider `unlink` failing with `ENOENT` as a success.
213
+
214
+ # 1.10.0
215
+
216
+ * Delay requiring `FileUtils`. (#285)
217
+ `FileUtils` can be installed as a gem, so it's best to wait for bundler to have setup the load path before requiring it.
218
+
219
+ * Improve support of Psych 4. (#392)
220
+ Since `1.8.0`, `YAML.load_file` was no longer cached when Psych 4 was used. This is because `load_file` loads
221
+ in safe mode by default, so the Bootsnap cache could defeat that safety.
222
+ Now when precompiling YAML files, Bootsnap first try to parse them in safe mode, and if it can't fallback to unsafe mode,
223
+ and the cache contains a flag that records whether it was generated in safe mode or not.
224
+ `YAML.unsafe_load_file` will use safe caches just fine, but `YAML.load_file` will fallback to uncached YAML parsing
225
+ if the cache was generated using unsafe parsing.
226
+
227
+ * Minimize the Kernel.require extra stack frames. (#393)
228
+ This should reduce the noise generated by bootsnap on `LoadError`.
229
+
230
+ # 1.9.4
231
+
232
+ * Ignore absolute paths in the loaded feature index. (#385)
233
+ This fixes a compatibility issue with Zeitwerk when Zeitwerk is loaded before bootsnap. It also should
234
+ reduce the memory usage and improve load performance of Zeitwerk managed files.
235
+
236
+ * Automatically invalidate the load path cache whenever the Ruby version change. (#387)
237
+ This is to avoid issues in case the same installation path is re-used for subsequent ruby patch releases.
238
+
239
+ # 1.9.3
240
+
241
+ * Only disable the compile cache for source files impacted by [Ruby 3.0.3 [Bug 18250]](https://bugs.ruby-lang.org/issues/18250).
242
+ This should keep the performance loss to a minimum.
243
+
244
+ # 1.9.2
245
+
246
+ * Disable compile cache if [Ruby 3.0.3's ISeq cache bug](https://bugs.ruby-lang.org/issues/18250) is detected.
247
+ AKA `iseq.rb:13 to_binary: wrong argument type false (expected Symbol)`
248
+ * Fix `Kernel.load` behavior: before `load 'a'` would load `a.rb` (and other tried extensions) and wouldn't load `a` unless `development_mode: true`, now only `a` would be loaded and files with extensions wouldn't be.
249
+
250
+ # 1.9.1
251
+
252
+ * Removed a forgotten debug statement in JSON precompilation.
253
+
254
+ # 1.9.0
255
+
256
+ * Added a compilation cache for `JSON.load_file`. (#370)
257
+
258
+ # 1.8.1
259
+
260
+ * Fixed support for older Psych. (#369)
261
+
262
+ # 1.8.0
263
+
264
+ * Improve support for Psych 4. (#368)
265
+
266
+ # 1.7.7
267
+
268
+ * Fix `require_relative` in evaled code on latest ruby 3.1.0-dev. (#366)
269
+
270
+ # 1.7.6
271
+
272
+ * Fix reliance on `set` to be required.
273
+ * Fix `Encoding::UndefinedConversionError` error for Rails applications when precompiling cache. (#364)
274
+
275
+ # 1.7.5
276
+
277
+ * Handle a regression of Ruby 2.7.3 causing Bootsnap to call the deprecated `untaint` method. (#360)
278
+ * Gracefully handle read-only file system as well as other errors preventing to persist the load path cache. (#358)
279
+
280
+ # 1.7.4
281
+
282
+ * Stop raising errors when encountering various file system errors. The cache is now best effort,
283
+ if somehow it can't be saved, bootsnap will gracefully fallback to the original operation (e.g. `Kernel.require`).
284
+ (#353, #177, #262)
285
+
286
+ # 1.7.3
287
+
288
+ * Disable YAML precompilation when encountering YAML tags. (#351)
289
+
290
+ # 1.7.2
291
+
292
+ * Fix compatibility with msgpack < 1. (#349)
293
+
294
+ # 1.7.1
295
+
296
+ * Warn Ruby 2.5 users if they turn ISeq caching on. (#327, #244)
297
+ * Disable ISeq caching for the whole 2.5.x series again.
298
+ * Better handle hashing of Ruby strings. (#318)
299
+
300
+ # 1.7.0
301
+
302
+ * Fix detection of YAML files in gems.
303
+ * Adds an instrumentation API to monitor cache misses.
304
+ * Allow to control the behavior of `require 'bootsnap/setup'` using environment variables.
305
+ * Deprecate the `disable_trace` option.
306
+ * Deprecate the `ActiveSupport::Dependencies` (AKA Classic autoloader) integration. (#344)
307
+
308
+ # 1.6.0
309
+
310
+ * Fix a Ruby 2.7/3.0 issue with `YAML.load_file` keyword arguments. (#342)
311
+ * `bootsnap precompile` CLI use multiple processes to complete faster. (#341)
312
+ * `bootsnap precompile` CLI also precompile YAML files. (#340)
313
+ * Changed the load path cache directory from `$BOOTSNAP_CACHE_DIR/bootsnap-load-path-cache` to `$BOOTSNAP_CACHE_DIR/bootsnap/load-path-cache` for ease of use. (#334)
314
+ * Changed the compile cache directory from `$BOOTSNAP_CACHE_DIR/bootsnap-compile-cache` to `$BOOTSNAP_CACHE_DIR/bootsnap/compile-cache` for ease of use. (#334)
315
+
316
+ # 1.5.1
317
+
318
+ * Workaround a Ruby bug in InstructionSequence.compile_file. (#332)
319
+
320
+ # 1.5.0
321
+
322
+ * Add a command line to statically precompile the ISeq cache. (#326)
323
+
324
+ # 1.4.9
325
+
326
+ * [Windows support](https://github.com/rails/bootsnap/pull/319)
327
+ * [Fix potential crash](https://github.com/rails/bootsnap/pull/322)
328
+
329
+ # 1.4.8
330
+
331
+ * [Prevent FallbackScan from polluting exception cause](https://github.com/rails/bootsnap/pull/314)
332
+
333
+ # 1.4.7
334
+
335
+ * Various performance enhancements
336
+ * Fix race condition in heavy concurrent load scenarios that would cause bootsnap to raise
337
+
338
+ # 1.4.6
339
+
340
+ * Fix bug that was erroneously considering that files containing `.` in the names were being
341
+ required if a different file with the same name was already being required
342
+
343
+ Example:
344
+
345
+ require 'foo'
346
+ require 'foo.en'
347
+
348
+ Before bootsnap was considering `foo.en` to be the same file as `foo`
349
+
350
+ * Use glibc as part of the ruby_platform cache key
351
+
352
+ # 1.4.5
353
+
354
+ * MRI 2.7 support
355
+ * Fixed concurrency bugs
356
+
357
+ # 1.4.4
358
+
359
+ * Disable ISeq cache in `bootsnap/setup` by default in Ruby 2.5
360
+
361
+ # 1.4.3
362
+
363
+ * Fix some cache permissions and umask issues after switch to mkstemp
364
+
365
+ # 1.4.2
366
+
367
+ * Fix bug when removing features loaded by relative path from `$LOADED_FEATURES`
368
+ * Fix bug with propagation of `NameError` up from nested calls to `require`
369
+
370
+ # 1.4.1
371
+
372
+ * Don't register change observers to frozen objects.
373
+
374
+ # 1.4.0
375
+
376
+ * When running in development mode, always fall back to a full path scan on LoadError, making
377
+ bootsnap more able to detect newly-created files. (#230)
378
+ * Respect `$LOADED_FEATURES.delete` in order to support code reloading, for integration with
379
+ Zeitwerk. (#230)
380
+ * Minor performance improvement: flow-control exceptions no longer generate backtraces.
381
+ * Better support for requiring from environments where some features are not supported (especially
382
+ JRuby). (#226)k
383
+ * More robust handling of OS errors when creating files. (#225)
384
+
385
+ # 1.3.2
386
+
387
+ * Fix Spring + Bootsnap incompatibility when there are files with similar names.
388
+ * Fix `YAML.load_file` monkey patch to keep accepting File objects as arguments.
389
+ * Fix the API for `ActiveSupport::Dependencies#autoloadable_module?`.
390
+ * Some performance improvements.
391
+
392
+ # 1.3.1
393
+
394
+ * Change load path scanning to more correctly follow symlinks.
395
+
396
+ # 1.3.0
397
+
398
+ * Handle cases where load path entries are symlinked (https://github.com/rails/bootsnap/pull/136)
399
+
400
+ # 1.2.1
401
+
402
+ * Fix method visibility of `Kernel#require`.
403
+
404
+ # 1.2.0
405
+
406
+ * Add `LoadedFeaturesIndex` to preserve fix a common bug related to `LOAD_PATH` modifications after
407
+ loading bootsnap.
408
+
409
+ # 1.1.8
410
+
411
+ * Don't cache YAML documents with `!ruby/object`
412
+ * Fix cache write mode on Windows
413
+
414
+ # 1.1.7
415
+
416
+ * Create cache entries as 0775/0664 instead of 0755/0644
417
+ * Better handling around cache updates in highly-parallel workloads
418
+
419
+ # 1.1.6
420
+
421
+ * Assortment of minor bugfixes
422
+
423
+ # 1.1.5
424
+
425
+ * bugfix re-release of 1.1.4
426
+
427
+ # 1.1.4 (yanked)
428
+
429
+ * Avoid loading a constant twice by checking if it is already defined
430
+
431
+ # 1.1.3
432
+
433
+ * Properly resolve symlinked path entries
434
+
435
+ # 1.1.2
436
+
437
+ * Minor fix: deprecation warning
438
+
439
+ # 1.1.1
440
+
441
+ * Fix crash in `Native.compile_option_crc32=` on 32-bit platforms.
442
+
443
+ # 1.1.0
444
+
445
+ * Add `bootsnap/setup`
446
+ * Support jruby (without compile caching features)
447
+ * Better deoptimization when Coverage is enabled
448
+ * Consider `Bundler.bundle_path` to be stable
449
+
450
+ # 1.0.0
451
+
452
+ * (none)
453
+
454
+ # 0.3.2
455
+
456
+ * Minor performance savings around checking validity of cache in the presence of relative paths.
457
+ * When coverage is enabled, skips optimization instead of exploding.
458
+
459
+ # 0.3.1
460
+
461
+ * Don't whitelist paths under `RbConfig::CONFIG['prefix']` as stable; instead use `['libdir']` (#41).
462
+ * Catch `EOFError` when reading load-path-cache and regenerate cache.
463
+ * Support relative paths in load-path-cache.
464
+
465
+ # 0.3.0
466
+
467
+ * Migrate CompileCache from xattr as a cache backend to a cache directory
468
+ * Adds support for Linux and FreeBSD
469
+
470
+ # 0.2.15
471
+
472
+ * Support more versions of ActiveSupport (`depend_on`'s signature varies; don't reiterate it)
473
+ * Fix bug in handling autoloaded modules that raise NoMethodError
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017-2025 Shopify, Inc.
4
+ Copyright (c) 2025-present Rails Foundation
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.