mini_racer 0.17.0.pre3 → 0.17.0.pre4
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/CHANGELOG +4 -0
- data/README.md +5 -2
- data/ext/mini_racer_extension/extconf.rb +3 -0
- data/lib/mini_racer/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 877bcc1b7a601bcd6ef672cc17caeb7e21df723a440b1d07a2a4931e2a4d118a
|
|
4
|
+
data.tar.gz: e8ea952ea537c94d1c05998d521555d78349755ab1172925b24a4135d6691d99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d1f45fb9e917632eff3131c9399710fad8f7ef47228e02f72a139122efd13565055b2851dc9348e6852cf009e1c5c93f0adf970544983f7713457f482a976a8d
|
|
7
|
+
data.tar.gz: 8ede15ef0dbe8a2b16ad9567d584ef57fcd2e0a2e801931476d7b4107d3c05154f70a5d1d96d7960919b939a4ea496d6d101a994b625d9a8000b79c7ee49bcc9
|
data/CHANGELOG
CHANGED
data/README.md
CHANGED
|
@@ -12,9 +12,12 @@ MiniRacer has an adapter for [execjs](https://github.com/rails/execjs) so it can
|
|
|
12
12
|
|
|
13
13
|
## Supported Ruby Versions & Troubleshooting
|
|
14
14
|
|
|
15
|
-
MiniRacer only supports non-EOL versions of Ruby. See [Ruby Maintenance Branches](https://www.ruby-lang.org/en/downloads/branches/) for the list of non-EOL Rubies. If you require support for older versions of Ruby install an older version of the gem.
|
|
15
|
+
MiniRacer only supports non-EOL versions of Ruby. See [Ruby Maintenance Branches](https://www.ruby-lang.org/en/downloads/branches/) for the list of non-EOL Rubies. If you require support for older versions of Ruby install an older version of the gem. [TruffleRuby](https://github.com/oracle/truffleruby) is also supported.
|
|
16
16
|
|
|
17
|
-
MiniRacer **does not support**
|
|
17
|
+
MiniRacer **does not support**
|
|
18
|
+
|
|
19
|
+
* [Ruby built on MinGW](https://github.com/rubyjs/mini_racer/issues/252#issuecomment-1201172236), "pure windows" no Cygwin, no WSL2 (see https://github.com/rubyjs/libv8-node/issues/9)
|
|
20
|
+
* [JRuby](https://www.jruby.org)
|
|
18
21
|
|
|
19
22
|
If you have a problem installing MiniRacer, please consider the following steps:
|
|
20
23
|
|
|
@@ -19,6 +19,9 @@ $CXXFLAGS += " -rdynamic" unless $CXXFLAGS.split.include? "-rdynamic"
|
|
|
19
19
|
$CXXFLAGS += " -fPIC" unless $CXXFLAGS.split.include? "-rdynamic" or IS_DARWIN
|
|
20
20
|
$CXXFLAGS += " -std=c++17"
|
|
21
21
|
$CXXFLAGS += " -fpermissive"
|
|
22
|
+
$CXXFLAGS += " -fno-rtti"
|
|
23
|
+
$CXXFLAGS += " -fno-exceptions"
|
|
24
|
+
$CXXFLAGS += " -fno-strict-aliasing"
|
|
22
25
|
#$CXXFLAGS += " -DV8_COMPRESS_POINTERS"
|
|
23
26
|
$CXXFLAGS += " -fvisibility=hidden "
|
|
24
27
|
|
data/lib/mini_racer/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mini_racer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.17.0.
|
|
4
|
+
version: 0.17.0.pre4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sam Saffron
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-09-
|
|
11
|
+
date: 2024-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -119,9 +119,9 @@ licenses:
|
|
|
119
119
|
- MIT
|
|
120
120
|
metadata:
|
|
121
121
|
bug_tracker_uri: https://github.com/discourse/mini_racer/issues
|
|
122
|
-
changelog_uri: https://github.com/discourse/mini_racer/blob/v0.17.0.
|
|
123
|
-
documentation_uri: https://www.rubydoc.info/gems/mini_racer/0.17.0.
|
|
124
|
-
source_code_uri: https://github.com/discourse/mini_racer/tree/v0.17.0.
|
|
122
|
+
changelog_uri: https://github.com/discourse/mini_racer/blob/v0.17.0.pre4/CHANGELOG
|
|
123
|
+
documentation_uri: https://www.rubydoc.info/gems/mini_racer/0.17.0.pre4
|
|
124
|
+
source_code_uri: https://github.com/discourse/mini_racer/tree/v0.17.0.pre4
|
|
125
125
|
post_install_message:
|
|
126
126
|
rdoc_options: []
|
|
127
127
|
require_paths:
|