capybara-simulated 0.7.0 → 0.8.0

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: b61d25a747a9298497ccf9c66f47f62f5e76c7ee79410aa7f1823a57c536e301
4
- data.tar.gz: 296588737e8879ff5a64fa95034a625d40d80d9971405f962c9cbbb6a8cb30c5
3
+ metadata.gz: 86debafbcc4a7b74683c302fd0777eddbd84d89c61fa01d2066cb48e0c1c724e
4
+ data.tar.gz: 5e54379c7e4084ed5fd3d6f9287076e013459aff109cbfb969a457225ca521c8
5
5
  SHA512:
6
- metadata.gz: 3adaf35e860f19084cf71c91092617151919f8ae71926f757afefdd3636d2f399a51c08ad703ed7c6210aeb9ab7f00a1c3f30cbf558f9ed2928b0d1a068a77d9
7
- data.tar.gz: e89bca3cb36f3d48adb87ab880d31c00a8d0787c59f0b40c1cbaf1ebadf36a3eef3ebfc17bd1b3641011cf397e1fc16b13593d78cd83910a00ec7c834a686ae8
6
+ metadata.gz: 1f0bfb4a3168fa898b7a89004ec33a975a020431f11b33149f74c150b90cfb88877380c1403955e2a73e1db7f76910e0fddc5db3d2564a828e82340f2b31f76b
7
+ data.tar.gz: a78a59560576aa8d691983ca728e8b8399d4787ca2e95d5a11e6cebab6c1c65e2c91ea3304ae5d25801d65999273af5ebb145cda8268233168bba6a2a7e23307
data/README.md CHANGED
@@ -41,9 +41,10 @@ The gem treats the JS engine as a soft dependency. Pick one of:
41
41
 
42
42
  ```ruby
43
43
  gem 'rusty_racer', '>= 0.1.9' # V8 (JIT, fastest per spec) — default
44
- gem 'quickjs', '>= 0.18' # QuickJS (interpreter, smaller per-VM RAM —
45
- # wins when scaling parallel workers under
46
- # a fixed memory budget)
44
+ gem 'quickjs', '>= 0.19' # QuickJS (interpreter, smaller per-VM RAM —
45
+ gem 'quickjs-polyfill-intl' # wins when scaling parallel workers under
46
+ # a fixed memory budget). Intl lives in the
47
+ # companion gem since quickjs 0.19.
47
48
  ```
48
49
 
49
50
  The V8 engine comes from [rusty_racer](https://github.com/ursm/rusty_racer), a rusty_v8-based Ruby binding with the native ES Module API, `ScriptCompiler::CachedData` snapshots, and per-frame realm contexts the driver builds on.