rusty_racer 0.1.1 → 0.1.2
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/README.md +50 -0
- data/ext/rusty_racer/Cargo.toml +1 -1
- data/ext/rusty_racer/src/lib.rs +23 -2228
- data/ext/rusty_racer/src/marshal.rs +798 -0
- data/ext/rusty_racer/src/ops.rs +1061 -0
- data/ext/rusty_racer/src/stack.rs +292 -0
- data/ext/rusty_racer/src/watchdog.rs +226 -0
- data/lib/rusty_racer/execjs.rb +118 -0
- data/lib/rusty_racer/version.rb +1 -1
- metadata +13 -4
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rusty_racer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Keita Urashima
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rb_sys
|
|
@@ -25,7 +25,8 @@ dependencies:
|
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0.9'
|
|
27
27
|
description: 'A V8 engine for Ruby built on rusty_v8 and Magnus: eval, host functions,
|
|
28
|
-
ES modules, snapshots, realms, bytecode cache,
|
|
28
|
+
ES modules, snapshots, realms, bytecode cache, faithful value marshalling, and an
|
|
29
|
+
ExecJS adapter.'
|
|
29
30
|
email:
|
|
30
31
|
- ursm@ursm.jp
|
|
31
32
|
executables: []
|
|
@@ -39,12 +40,20 @@ files:
|
|
|
39
40
|
- ext/rusty_racer/Cargo.toml
|
|
40
41
|
- ext/rusty_racer/extconf.rb
|
|
41
42
|
- ext/rusty_racer/src/lib.rs
|
|
43
|
+
- ext/rusty_racer/src/marshal.rs
|
|
44
|
+
- ext/rusty_racer/src/ops.rs
|
|
45
|
+
- ext/rusty_racer/src/stack.rs
|
|
46
|
+
- ext/rusty_racer/src/watchdog.rs
|
|
42
47
|
- lib/rusty_racer.rb
|
|
48
|
+
- lib/rusty_racer/execjs.rb
|
|
43
49
|
- lib/rusty_racer/version.rb
|
|
44
50
|
homepage: https://github.com/ursm/rusty_racer
|
|
45
51
|
licenses:
|
|
46
52
|
- MIT
|
|
47
|
-
metadata:
|
|
53
|
+
metadata:
|
|
54
|
+
source_code_uri: https://github.com/ursm/rusty_racer
|
|
55
|
+
bug_tracker_uri: https://github.com/ursm/rusty_racer/issues
|
|
56
|
+
rubygems_mfa_required: 'true'
|
|
48
57
|
post_install_message:
|
|
49
58
|
rdoc_options: []
|
|
50
59
|
require_paths:
|